ColorableItems::Bold Property

 

Sets or gets whether or not the item should appear in bold.

Namespace:   EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

property bool Bold {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

A 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
Return to top
Show: