ENUMMARKERFLAGS Enumeration

 

Provides options for enumerating collections of markers.

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

[FlagsAttribute]
public enum ENUMMARKERFLAGS

Member nameDescription
EM_ALLTYPES

Ignore iMarker parameter.

EM_CONTAINED

Excludes any marker whose span is not fully contained within the given span. For example, say that you have a marker from column 0 to column 1 and a marker from column 1 to column 3. Given a span of 0-1, you return only the first marker; given span of 1-2, you return only the second marker. However, given a span of 0-2, you return both markers.

EM_DEFAULT

Default settings.

EM_ENTIREBUFFER

Ignore iPos and iLen parameters.

EM_GLYPHINSPAN

Return markers that have a margin glyph and that start on the same line as the specified span.

EM_INCLUDEINVISIBLE

Includes invisible markers, which are normally excluded.

EM_SORTDESCENDING

Sort in descending order.

EM_SORTPRIORITY

Sort by marker priority.

From textmgr.idl:

Return to top
Show: