IVsPackageDefinedTextMarkerType::GetBehaviorFlags Method (UInt32)
Visual Studio 2015
Controls how the marker tracks text when edits occur.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
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::Int32If 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.
Show: