FontsAndColorsItems Interface

 

Contains ColorableItems objects that define the color, appearance, and other attributes of items.

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

[GuidAttribute("F25AE7E6-1460-4BA4-8E5E-BBBE746DE353")]
public interface class FontsAndColorsItems : IEnumerable

NameDescription
System_CAPS_pubpropertyCount

Gets a value indicating the number of objects in the FontsAndColorsItems collection.

NameDescription
System_CAPS_pubmethodGetEnumerator()

Gets an enumerator for items in the collection.

System_CAPS_pubmethodItem(Object^)

Returns a ColorableItems object in a FontsAndColorsItems collection.

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
Return to top
Show: