ColorableItems.Foreground الخاصية
تعيين أو الحصول على اللون المقدمة للعنصر.
مساحة الاسم: EnvDTE
التجميع: EnvDTE (في EnvDTE.dll)
بناء الجملة
'إقرار
Property Foreground As UInteger
Get
Set
uint Foreground { get; set; }
property unsigned int Foreground {
unsigned int get ();
void set (unsigned int value);
}
abstract Foreground : uint32 with get, set
function get Foreground () : uint
function set Foreground (value : uint)
قيمة الخاصية
النوع: System.UInt32
وحدة تعيين اللون العنصر.
أمثلة
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
أمن NET Framework.
- الثقة الكاملة للمتصل الفوري. يتعذر استخدام هذا العضو بواسطة التعليمات البرمجية الموثوق بها جزئيًا. لمزيد من المعلومات، راجع باستخدام مكتبات من تعليمات برمجية موثوق بها جزئي.