DEFAULTITEMS Enumeration

 

Specifies default types that identify items in the core editor view for colorizing.

Namespace:   Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

public enum DEFAULTITEMS

Member nameDescription
COLITEM_COMMENT

Denotes a language comment.

COLITEM_IDENTIFIER

Denotes a language identifier. For example, in int MyVariable, MyVariable is an identifier, while int is a keyword.

COLITEM_KEYWORD

Denotes a language keyword.

COLITEM_NUMBER

Denotes a number.

COLITEM_STRING

Denotes a string.

COLITEM_TEXT

Default value for plain text.

DEFAULT_ITEM_COUNT

This is the last enumeration value.

The following colors are associated with the DEFAULTITEMS indices by default:

Item

Foreground

Background

Font flags

COLITEM_KEYWORD

CI_BLUE

CI_USERTEXT_BK

FF_BOLD

COLITEM_COMMENT

CI_DARKGREEN

CI_USERTEXT_BK

0

COLITEM_IDENTIFIER

CI_USERTEXT_FG

CI_USERTEXT_BK

0

COLITEM_STRING

CI_USERTEXT_FG

CI_USERTEXT_BK

0

COLITEM_NUMBER

CI_USERTEXT_FG

CI_USERTEXT_BK

0

From textmgr.idl:

Return to top
Show: