IVsTextLines::FindMarkerByLineIndex Method (Int32, Int32, Int32, UInt32, IVsTextLineMarker^)

 

Locates a marker of a given type based on a line index.

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

int FindMarkerByLineIndex(
	int iMarkerType,
	int iStartingLine,
	int iStartingIndex,
	unsigned int dwFlags,
	[OutAttribute] IVsTextLineMarker^% ppMarker
)

Parameters

iMarkerType
Type: System::Int32

[in] Specifies the type of marker to find.

iStartingLine
Type: System::Int32

[in] Starting line.

iStartingIndex
Type: System::Int32

[in] Starting character index within the line. Must be less than or equal to the length of the line.

dwFlags
Type: System::UInt32

[in] Specifies the direction to search for the marker. For a list of dwFlags values, see FINDMARKERFLAGS.

ppMarker
Type: Microsoft.VisualStudio.TextManager.Interop::IVsTextLineMarker^

[out] Pointer to the IVsTextLineMarker interface (that is, the text marker).

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From textmgr.idl:

HRESULT IVsTextLines::FindMarkerByLineIndex(
   [in] long iMarkerType,
   [in] long iStartingLine,
   [in] CharIndex iStartingIndex,
   [in] DWORD dwFlags,
   [out] IVsTextLineMarker **ppMarker
);

This method searches for markers subject to the constraints specified using the dwFlags and iMarkerType parameters.

Return to top
Show: