IVsTextLayer::EnumLayerMarkers Method (Int32, Int32, Int32, Int32, Int32, UInt32, IVsEnumLayerMarkers^)
Visual Studio 2015
Enumerates all markers.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
int EnumLayerMarkers( int iStartLine, int iStartIndex, int iEndLine, int iEndIndex, int iMarkerType, unsigned int dwFlags, [OutAttribute] IVsEnumLayerMarkers^% ppEnum )
Parameters
- iStartLine
-
Type:
System::Int32
[in] Starting line.
- iStartIndex
-
Type:
System::Int32
[in] Starting character index within the line (must be <= length of line).
- iEndLine
-
Type:
System::Int32
[in] Ending line.
- iEndIndex
-
Type:
System::Int32
[in] Ending character index within the line (must be <= length of line).
- iMarkerType
-
Type:
System::Int32
[in] The marker type.
- dwFlags
-
Type:
System::UInt32
[in] ORing of the ENUMMARKERFLAGS enumeration.
- ppEnum
-
Type:
Microsoft.VisualStudio.TextManager.Interop::IVsEnumLayerMarkers^
[out] The enumeration of the markers.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Enumerates all markers, but gets the IVsTextLineMarkerIVsEnumLineMarkers interface via IVsEnumLineMarkers.
From textmgr.idl:
HRESULT IVsTextLayer::EnumLayerMarkers( [in] long iStartLine, [in] CharIndex iStartIndex, [in] long iEndLine, [in] CharIndex iEndIndex, [in] long iMarkerType, [in] DWORD dwFlags, [out] IVsEnumLayerMarkers ** ppEnum );
IVsTextLayer.EnumLayerMarkers enumerates all markers, but gets their IVsTextLineMarker interface via IVsEnumLineMarkers.
Show: