ColorableItems Interface
Visual Studio 2015
Represents the portions of an item that can be colored, such as the foreground and background.
Assembly: EnvDTE (in EnvDTE.dll)
| Name | Description | |
|---|---|---|
![]() | Background | Sets or gets the background color of the item. |
![]() | Bold | Sets or gets whether or not the item should appear in bold. |
![]() | Foreground | Sets or gets the foreground color of the item. |
![]() | Name | Sets or gets the name of the ColorableItems object. |
ColorableItems objects are contained in the FontsAndColorsItems collection.
Sub ColorableItemsExample() 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
Show:
