15 writes to type
System.Web (15)
UI\WebControls\FontUnit.cs (15)
96this.type = type; 110this.type = FontSize.NotSet; 112this.type = FontSize.AsUnit; 125this.type = FontSize.AsUnit; 155this.type = FontSize.NotSet; 165this.type = FontSize.XXSmall; 170this.type = FontSize.XSmall; 175this.type = FontSize.XLarge; 180this.type = FontSize.XXLarge; 186this.type = FontSize.Small; 190this.type = FontSize.Smaller; 196this.type = FontSize.Large; 200this.type = FontSize.Larger; 205this.type = FontSize.Medium; 210this.type = FontSize.AsUnit;
12 references to type
System.Web (12)
UI\WebControls\FontUnit.cs (12)
97if (this.type == FontSize.AsUnit) { 221return type == FontSize.NotSet; 231return type; 250return HashCodeCombiner.CombineHashCodes(type.GetHashCode(), value.GetHashCode()); 263if ((f.type == type) && (f.value == value)) { 274return ((left.type == right.type) && (left.value == right.value)); 283return ((left.type != right.type) || (left.value != right.value)); 330switch (type) { 347s = PropertyConverter.EnumToString(typeof(FontSize), type);