FontsAndColorsItems – rozhraní
Obsahuje ColorableItems objekty, které definují barvu, vzhled a další atributy položek.
Obor názvů: EnvDTE
Sestavení: EnvDTE (v EnvDTE.dll)
Syntaxe
'Deklarace
<GuidAttribute("F25AE7E6-1460-4BA4-8E5E-BBBE746DE353")> _
Public Interface FontsAndColorsItems _
Inherits IEnumerable
[GuidAttribute("F25AE7E6-1460-4BA4-8E5E-BBBE746DE353")]
public interface FontsAndColorsItems : IEnumerable
[GuidAttribute(L"F25AE7E6-1460-4BA4-8E5E-BBBE746DE353")]
public interface class FontsAndColorsItems : IEnumerable
[<GuidAttribute("F25AE7E6-1460-4BA4-8E5E-BBBE746DE353")>]
type FontsAndColorsItems =
interface
interface IEnumerable
end
public interface FontsAndColorsItems extends IEnumerable
Typ FontsAndColorsItems zveřejňuje následující členy.
Vlastnosti
Název | Popis | |
---|---|---|
Count | Získá hodnotu určující počet objektů v FontsAndColorsItems kolekce. |
Na začátek
Metody
Název | Popis | |
---|---|---|
GetEnumerator() | Čítač výčtu, iteruje kolekce vrátí. (Zděděno z IEnumerable.) | |
GetEnumerator() | Získává čítač výčtu položek v kolekci. | |
Item | Vrátí ColorableItems v objektu FontsAndColorsItems kolekce. |
Na začátek
Příklady
Sub FontsAndColorsItemsExample()
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
Dim ClrList As String
For Each clritem In clritems
ClrList += clritem.Name + " (" + clritem.Foreground.ToString() + ")"
ClrList += Chr(13) & Chr(10)
Next
MsgBox(ClrList)
End Sub