Partilhar via


Propriedade ColorableItems.Bold

Define ou obtém o item deve aparecer em negrito ou não.

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

Sintaxe

'Declaração
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)

Valor de propriedade

Tipo: System.Boolean
Um valor booleano indicando true se o item estiver em negrito, false se não for.

Exemplos

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

Segurança do .NET Framework

Consulte também

Referência

ColorableItems Interface

Namespace EnvDTE