IVsTextMarkerType.GetBehaviorFlags Method
Returns marker behavior flags, which define the default marker behavior.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function GetBehaviorFlags ( _
<OutAttribute> ByRef pdwFlags As UInteger _
) As Integer
int GetBehaviorFlags(
out uint pdwFlags
)
int GetBehaviorFlags(
[OutAttribute] unsigned int% pdwFlags
)
abstract GetBehaviorFlags :
pdwFlags:uint32 byref -> int
function GetBehaviorFlags(
pdwFlags : uint
) : int
Parameters
pdwFlags
Type: System.UInt32%[out] Pointer to a DWORD containing the behavior for the marker type. 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.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsTextMarkerType::GetBehaviorFlags(
[out] DWORD *pdwFlags
);
For now, only streaming and line-spanning options are supported.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.