Udostępnij za pośrednictwem


Właściwość ColorableItems.Bold —

Ustawia lub pobiera, niezależnie od tego, czy element powinien pojawić się czcionką pogrubioną.

Przestrzeń nazw:  EnvDTE
Zestaw:  EnvDTE (w EnvDTE.dll)

Składnia

'Deklaracja
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)

Wartość właściwości

Typ: Boolean
Wartość logiczna wskazująca true , jeśli element jest pogrubiony, false Jeśli nie.

Przykłady

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

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

ColorableItems Interfejs

Przestrzeń nazw EnvDTE