Partilhar via


Propriedade ColorableItems.Bold

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

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

Sintaxe

Property Bold As Boolean

Dim instance As ColorableItems
Dim value As Boolean

value = instance.Bold

instance.Bold = value
bool Bold { get; set; }
property bool Bold {
    bool get ();
    void set (bool value);
}
function get Bold () : boolean
function set Bold (value : boolean)

Valor da propriedade

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

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

Permissões

Consulte também

Referência

ColorableItems Interface

ColorableItems Membros

Espaço para nome EnvDTE