Freigeben über


ColorableItems.Bold-Eigenschaft

Legt fest oder ruft ab, ob das Element in Fettschrift angezeigt werden soll.

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

Syntax

'Declaration
Property Bold As Boolean
bool Bold { get; set; }
property bool Bold {
    bool get ();
    void set (bool value);
}
abstract Bold : bool with get, set
function get Bold () : boolean 
function set Bold (value : boolean)

Eigenschaftswert

Typ: Boolean
Ein boolescher Wert, der true lautet, wenn das Element in Fettschrift angezeigt wird, und andernfalls false.

Beispiele

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

.NET Framework-Sicherheit

Siehe auch

Referenz

ColorableItems Schnittstelle

EnvDTE-Namespace