ColorableItems Interface
Represents the portions of an item that can be colored, such as the foreground and background.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
<GuidAttribute("E5D17051-D6E5-4DA7-8B3A-CA888617A5E7")> _
Public Interface ColorableItems
[GuidAttribute("E5D17051-D6E5-4DA7-8B3A-CA888617A5E7")]
public interface ColorableItems
[GuidAttribute(L"E5D17051-D6E5-4DA7-8B3A-CA888617A5E7")]
public interface class ColorableItems
[<GuidAttribute("E5D17051-D6E5-4DA7-8B3A-CA888617A5E7")>]
type ColorableItems = interface end
public interface ColorableItems
The ColorableItems type exposes the following members.
Properties
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. |
Top
Remarks
ColorableItems objects are contained in the FontsAndColorsItems collection.
Examples
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