Sdílet prostřednictvím


ColorableItems.Foreground-Eigenschaft

Aktualisiert: November 2007

Legt die Vordergrundfarbe des Elements fest oder ruft sie ab.

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

Syntax

'Declaration
Property Foreground As UInteger
'Usage
Dim instance As ColorableItems
Dim value As UInteger

value = instance.Foreground

instance.Foreground = value
uint Foreground { get; set; }
property unsigned int Foreground {
    unsigned int get ();
    void set (unsigned int value);
}
function get Foreground () : uint
function set Foreground (value : uint)

Eigenschaftenwert

Typ: System.UInt32

Eine Einheit, die die Farbe des Elements angibt.

Beispiele

Sub ForegroundExample()
   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

Berechtigungen

Siehe auch

Referenz

ColorableItems-Schnittstelle

ColorableItems-Member

EnvDTE-Namespace