67 references to FontSize
System.Web.Mobile (67)
UI\MobileControls\Adapters\HtmlMobileTextWriter.cs (19)
496
private
FontSize
_fontSize;
509
_fontSize =
FontSize
.Normal;
531
_fontSize = (
FontSize
) style[Style.FontSizeKey , true];
532
if(_fontSize ==
FontSize
.NotSet)
534
_fontSize =
FontSize
.Normal;
580
internal
FontSize
FontSize
664
private
FontSize
_size;
670
_size =
FontSize
.Normal;
692
internal
FontSize
FontSize
705
state.Current.FontSize =
FontSize
.Normal;
780
if(((FontStyleTag)o).FontSize !=
FontSize
.Normal)
1287
if(newStyle.FontSize ==
FontSize
.Large)
1291
_current.FontSize =
FontSize
.Large;
1292
fontTag.FontSize =
FontSize
.Large;
1294
else if(newStyle.FontSize ==
FontSize
.Small)
1297
_current.FontSize =
FontSize
.Small;
1298
fontTag.FontSize =
FontSize
.Small;
1303
_current.FontSize =
FontSize
.Normal;
1304
fontTag.FontSize =
FontSize
.Normal;
UI\MobileControls\Adapters\WmlMobileTextWriter.cs (11)
1108
format.Size !=
FontSize
.Normal);
1182
if (writeSize && format.Size !=
FontSize
.Normal)
1184
WriteFullBeginTag(format.Size ==
FontSize
.Large ? _largeTag : _smallTag);
1200
WriteEndTag(_currentWrittenFormat.Size ==
FontSize
.Large ? _largeTag : _smallTag);
1610
new WmlFormat(false, false,
FontSize
.Normal);
1722
private
FontSize
_size;
1734
FontSize
fontSize = (
FontSize
)style[Style.FontSizeKey, true];
1735
Size = (fontSize !=
FontSize
.NotSet) ? fontSize : currentFormat.Size;
1739
public WmlFormat(bool bold, bool italic,
FontSize
size)
1775
public
FontSize
Size
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlStyleClass.cs (6)
174
switch ((
FontSize
)_controlStyle[Style.FontSizeKey, true /* inherit */]) {
175
case
FontSize
.Large:
178
case
FontSize
.Small:
181
case
FontSize
.Normal:
217
if ((
FontSize
)_controlStyle [Style.FontSizeKey, true] != (
FontSize
)style [Style.FontSizeKey, true]) {
UI\MobileControls\Design\Adapters\DesignerTextWriter.cs (4)
112
FontSize
fontSize = (
FontSize
) style[Style.FontSizeKey , true];
134
if (fontSize ==
FontSize
.Large)
138
else if (fontSize ==
FontSize
.Small)
UI\MobileControls\Design\MobileContainerDesigner.cs (4)
184
FontSize
fontSize = (
FontSize
) Style[Style.FontSizeKey , true];
190
if (fontSize ==
FontSize
.Large)
194
else if (fontSize ==
FontSize
.Small)
UI\MobileControls\Design\StylesEditorDialog.cs (6)
36
using FontSize = System.Web.UI.MobileControls.
FontSize
;
596
case
FontSize
.Large :
599
case
FontSize
.Small :
1070
FontSize
fontSize = currentStyle.Font.Size;
1100
if (fontSize ==
FontSize
.NotSet)
1136
if (fontSize ==
FontSize
.NotSet)
UI\MobileControls\ErrorFormatterPage.cs (1)
97
ctl.Font.Size =
FontSize
.Large;
UI\MobileControls\FontInfo.cs (4)
106
DefaultValue(
FontSize
.NotSet),
111
public
FontSize
Size
128
String size = (this.Size.Equals(
FontSize
.NotSet) ? null : Enum.GetName(typeof(
FontSize
), this.Size));
UI\MobileControls\Style.cs (10)
48
FontSizeKey = RegisterStyle("FontSize" , typeof(
FontSize
) , System.Web.UI.MobileControls.
FontSize
.NotSet , true),
83
switch ((
FontSize
)this[FontSizeKey, true])
85
case
FontSize
.Small:
88
case
FontSize
.Large:
109
switch ((
FontSize
)this[FontSizeKey, true])
111
case
FontSize
.Large :
115
case
FontSize
.Small :
562
internal
FontSize
FontSize
566
return (
FontSize
)this[FontSizeKey];
UI\MobileControls\StyleSheet.cs (2)
59
title.Font.Size =
FontSize
.Large;
69
subCommand.Font.Size =
FontSize
.Small;