IVsPackageDefinedTextMarkerType::GetBehaviorFlags Method (UInt32)

 

Controls how the marker tracks text when edits occur.

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

int GetBehaviorFlags(
	[OutAttribute] unsigned int% pdwFlags
)

Parameters

pdwFlags
Type: System::UInt32

[out] Pointer to flags specifying how the marker tracks text when edits occur. For a list of pdwFlags values, see MARKERBEHAVIORFLAGS.

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 IVsPackageDefinedTextMarkerType::GetBehaviorFlags(
  [out] DWORD *pdwFlags
);

In general, specify a value of MB_DEFAULT for the pdwFlags parameter. If you want your marker to always snap to the current line, you can specify a value of MB_LINESPAN. MB_LINESPAN is an entirely perpendicular setting to MV_LINE, which controls visual appearance.

Return to top
Show: