27 references to Bold
System.Drawing (3)
commonui\System\Drawing\Advanced\Font.cs (1)
622
return(Style & FontStyle.
Bold
) != 0;
commonui\System\Drawing\FontConverter.cs (2)
170
FontStyle validBits = FontStyle.Regular | FontStyle.
Bold
| FontStyle.Italic | FontStyle.Underline | FontStyle.Strikeout;
379
style |= FontStyle.
Bold
;
System.Web.DataVisualization (1)
Common\General\Chart.cs (1)
4165
get { return this.GetFont(DefaultFamilyName, 8, FontStyle.
Bold
); }
System.Web.Entity.Design (1)
System\Data\WebControls\Design\Util\TaskFormBase.cs (1)
166
_captionLabel.Font = new Font(Font.FontFamily, Font.Size + 2.0f, FontStyle.
Bold
, Font.Unit);
System.Web.Mobile (1)
UI\MobileControls\Design\Util\ImageCreator.cs (1)
73
boldFont = new Font(normalFont.FontFamily, 8, FontStyle.
Bold
)
System.Windows.Forms (15)
misc\GDI\WindowsFont.cs (3)
162
this.logFont.lfWeight = (style & FontStyle.
Bold
) == FontStyle.
Bold
? IntNativeMethods.FW_BOLD : IntNativeMethods.FW_NORMAL;
195
this.style |= FontStyle.
Bold
;
winforms\Managed\System\WinForms\AxHost.cs (2)
4999
style |= FontStyle.
Bold
;
5011
style |= FontStyle.
Bold
;
winforms\Managed\System\WinForms\DataGridCaption.cs (1)
90
this.dataGridFont = new Font(dataGrid.Font, FontStyle.
Bold
);
winforms\Managed\System\WinForms\DataGridParentRows.cs (2)
578
textFont = new Font(font, FontStyle.
Bold
);
991
textFont = new Font(font, FontStyle.
Bold
);
winforms\Managed\System\WinForms\ListView.cs (1)
2515
odCacheFont = new Font(odCacheFont, FontStyle.
Bold
);
winforms\Managed\System\WinForms\PropertyGridInternal\DocComment.cs (1)
229
m_labelTitle.Font = new Font(Font, FontStyle.
Bold
);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
1461
fontBold = new Font(this.Font, FontStyle.
Bold
);
winforms\Managed\System\WinForms\RichTextBox.cs (1)
2301
style |= FontStyle.
Bold
;
winforms\Managed\System\WinForms\TrustManagerMoreInformation.cs (2)
40
lblMachineAccess.Font = lblPublisher.Font = lblInstallation.Font = lblLocation.Font = new Font(lblMachineAccess.Font, FontStyle.
Bold
);
439
this.lblPublisher.Font = new Font(this.Font, FontStyle.
Bold
);
winforms\Managed\System\WinForms\TrustManagerPromptUI.cs (1)
845
this.lblName.Font = new Font(this.Font, FontStyle.
Bold
);
System.Windows.Forms.DataVisualization (1)
Common\General\Chart.cs (1)
4165
get { return this.GetFont(DefaultFamilyName, 8, FontStyle.
Bold
); }
System.Workflow.ComponentModel (5)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (2)
821
this.artifactLabel.Font = new Font(this.Font.Name, this.Font.SizeInPoints, FontStyle.
Bold
);
1218
using (Font helpFontBold = new Font(this.Font.FontFamily, this.Font.SizeInPoints, FontStyle.
Bold
))
AuthoringOM\Design\SequentialWorkflowHeaderFooter.cs (2)
195
using (Font font = new Font(e.DesignerTheme.Font.FontFamily, e.DesignerTheme.Font.SizeInPoints + 1.0f, FontStyle.
Bold
))
212
using (Font font = new Font(e.DesignerTheme.Font.FontFamily, e.DesignerTheme.Font.SizeInPoints + 1.0f, (this.AssociatedDesigner.SmartTagVisible) ? FontStyle.
Bold
: FontStyle.Regular))
AuthoringOM\Design\Themes.cs (1)
3097
this.boldFont = new Font(this.fontName, FontSize, FontStyle.
Bold
);