ColorableItems::Bold Property
Visual Studio 2015
Sets or gets whether or not the item should appear in bold.
Assembly: EnvDTE (in EnvDTE.dll)
Property Value
Type: System::BooleanA Boolean value indicating true if the item is bold, false if not.
Sub BoldExample() Dim props As EnvDTE.Properties props = DTE.Properties("FontsAndColors", "TextEditor") Dim prop As EnvDTE.Property = props.Item("FontsAndColorsItems") Dim clritems As EnvDTE.FontsAndColorsItems = prop.Object Dim clritem As EnvDTE.ColorableItems = clritems.Item(1) Dim ClrList As String ClrList += "Background color: " & clritem.Background.ToString & vbCr ClrList += "Foreground color: " & clritem.Foreground.ToString & vbCr ClrList += "Bold?: " & clritem.Bold.ToString MsgBox(ClrList) End Sub
Show: