52 references to FontSize
System.Web (52)
UI\Html32TextWriter.cs (1)
255
if (fu.Type ==
FontSize
.AsUnit) {
UI\WebControls\FontInfo.cs (1)
192
if ((value.Type ==
FontSize
.AsUnit) && (value.Unit.Value < 0)) {
UI\WebControls\FontUnit.cs (37)
35
public static readonly FontUnit Smaller = new FontUnit(
FontSize
.Smaller);
41
public static readonly FontUnit Larger = new FontUnit(
FontSize
.Larger);
47
public static readonly FontUnit XXSmall = new FontUnit(
FontSize
.XXSmall);
53
public static readonly FontUnit XSmall = new FontUnit(
FontSize
.XSmall);
59
public static readonly FontUnit Small = new FontUnit(
FontSize
.Small);
65
public static readonly FontUnit Medium = new FontUnit(
FontSize
.Medium);
71
public static readonly FontUnit Large = new FontUnit(
FontSize
.Large);
77
public static readonly FontUnit XLarge = new FontUnit(
FontSize
.XLarge);
83
public static readonly FontUnit XXLarge = new FontUnit(
FontSize
.XXLarge);
85
private readonly
FontSize
type;
90
/// <para>Initializes a new instance of the <see cref='System.Web.UI.WebControls.FontUnit'/> class with a <see cref='System.Web.UI.WebControls.
FontSize
'/>.</para>
92
public FontUnit(
FontSize
type) {
93
if (type <
FontSize
.NotSet || type >
FontSize
.XXLarge) {
97
if (this.type ==
FontSize
.AsUnit) {
110
this.type =
FontSize
.NotSet;
112
this.type =
FontSize
.AsUnit;
125
this.type =
FontSize
.AsUnit;
155
this.type =
FontSize
.NotSet;
165
this.type =
FontSize
.XXSmall;
170
this.type =
FontSize
.XSmall;
175
this.type =
FontSize
.XLarge;
180
this.type =
FontSize
.XXLarge;
186
this.type =
FontSize
.Small;
190
this.type =
FontSize
.Smaller;
196
this.type =
FontSize
.Large;
200
this.type =
FontSize
.Larger;
205
this.type =
FontSize
.Medium;
210
this.type =
FontSize
.AsUnit;
221
return type ==
FontSize
.NotSet;
229
public
FontSize
Type {
331
case
FontSize
.AsUnit:
334
case
FontSize
.XXSmall:
337
case
FontSize
.XSmall:
340
case
FontSize
.XLarge:
343
case
FontSize
.XXLarge:
347
s = PropertyConverter.EnumToString(typeof(
FontSize
), type);
UI\WebControls\FontUnitConverter.cs (11)
80
if ((value == null) || (((FontUnit)value).Type ==
FontSize
.NotSet))
93
else if (u.Type !=
FontSize
.AsUnit) {
96
case
FontSize
.Smaller:
99
case
FontSize
.Larger:
102
case
FontSize
.XXSmall:
105
case
FontSize
.XSmall:
108
case
FontSize
.Small:
111
case
FontSize
.Medium:
114
case
FontSize
.Large:
117
case
FontSize
.XLarge:
120
case
FontSize
.XXLarge:
UI\WebParts\WebPartManager.cs (2)
2447
return typeof(
FontSize
);
2490
else if (type == typeof(
FontSize
)) {