6 overrides of Font
System.Web (4)
UI\WebControls\AdRotator.cs (1)
146public override FontInfo Font {
UI\WebControls\Image.cs (1)
84public override FontInfo Font {
UI\WebParts\DeclarativeCatalogPart.cs (1)
234public override FontInfo Font {
UI\WebParts\PageCatalogPart.cs (1)
219public override FontInfo Font {
System.Web.DataVisualization (1)
WebForm\ChartWebControl.cs (1)
1795 public override FontInfo Font
System.Web.Extensions (1)
UI\WebControls\ListView.cs (1)
495public override FontInfo Font {
48 references to Font
System.Web (38)
ErrorFormatter.cs (4)
192label.Font.Bold = true; 193label.Font.Size = FontUnit.Large; 200label.Font.Bold = true; 201label.Font.Italic = true;
UI\WebControls\AdRotator.cs (1)
148return base.Font;
UI\WebControls\Calendar.cs (3)
883titleTable.Font.CopyFrom(titleStyle.Font); 884titleTable.Font.MergeWith(this.Font);
UI\WebControls\ChangePassword.cs (5)
2473createUserLink.Font.CopyFrom(_hyperLinkStyle.Font); 2475passwordRecoveryLink.Font.CopyFrom(_hyperLinkStyle.Font); 2477helpPageLink.Font.CopyFrom(_hyperLinkStyle.Font); 2479editProfileLink.Font.CopyFrom(_hyperLinkStyle.Font); 2558editProfileLink.Font.CopyFrom(_hyperLinkStyle.Font);
UI\WebControls\CreateUserWizard.cs (2)
2001helpPageLink.Font.CopyFrom(_hyperLinkStyle.Font); 2077editProfileLink.Font.CopyFrom(_hyperLinkStyle.Font);
UI\WebControls\FormView.cs (8)
2540if (Font.Bold || 2541Font.Italic || 2542!String.IsNullOrEmpty(Font.Name) || 2543(Font.Names.Length != 0) || 2544Font.Overline || 2545(Font.Size != FontUnit.Empty) || 2546Font.Strikeout || 2547Font.Underline) {
UI\WebControls\Image.cs (1)
88return base.Font;
UI\WebControls\login.cs (3)
1656createUserLink.Font.CopyFrom(HyperLinkStyle.Font); 1658passwordRecoveryLink.Font.CopyFrom(HyperLinkStyle.Font); 1660helpPageLink.Font.CopyFrom(HyperLinkStyle.Font);
UI\WebControls\LoginUtil.cs (1)
63control.Font.CopyFrom(style.Font);
UI\WebControls\Menu.cs (1)
2073_rootMenuItemStyle.Font.CopyFrom(Font);
UI\WebControls\MenuRendererClassic.cs (2)
219if (Menu.Font != null) { 221Menu.Font.Reset();
UI\WebControls\PasswordRecovery.cs (2)
1947helpPageLink.Font.CopyFrom(HyperLinkStyle.Font); 2145helpPageLink.Font.CopyFrom(HyperLinkStyle.Font);
UI\WebControls\SiteMapPath.cs (1)
589link.Font.Underline = style.Font.Underline;
UI\WebControls\TreeView.cs (1)
989_baseNodeStyle.Font.CopyFrom(Font);
UI\WebParts\DeclarativeCatalogPart.cs (1)
235get { return base.Font; }
UI\WebParts\PageCatalogPart.cs (1)
220get { return base.Font; }
UI\WebParts\RowToParametersTransformer.cs (1)
261label.Font.Bold = true;
System.Web.DataVisualization (3)
WebForm\ChartWebControl.cs (1)
1799 return base.Font;
WebForm\General\ChartHttpHandler.cs (2)
645result.Font.Names = new string[] { "Tahoma", "Ariel" }; 646result.Font.Size = new FontUnit(10, UnitType.Point);
System.Web.Extensions (1)
UI\WebControls\ListView.cs (1)
497return base.Font;
System.Web.Mobile (6)
UI\MobileControls\Style.cs (6)
82control.Font.Name = (String)this[FontNameKey, true]; 86control.Font.Size = FontUnit.Small; 89control.Font.Size = FontUnit.Large; 92control.Font.Size = FontUnit.Medium; 95control.Font.Bold = ((BooleanOption)this[BoldKey, true]) == BooleanOption.True; 96control.Font.Italic = ((BooleanOption)this[ItalicKey, true]) == BooleanOption.True;