Proprietà ColorableItems.Bold
Ottiene o imposta un valore che indica se l'elemento deve essere visualizzato in grassetto.
Spazio dei nomi: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Sintassi
'Dichiarazione
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)
Valore proprietà
Tipo: Boolean
Valore booleano true se l'elemento è in grassetto, false in caso contrario.
Esempi
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
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per altre informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.