IVsTextLineMarker::GetMarkerCommandInfo Method (Int32, array<String^>^, array<UInt32>^)
Visual Studio 2015
Returns text marker command information.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
int GetMarkerCommandInfo( int iItem, array<String^>^ pbstrText, array<unsigned int>^ pcmdf )
Parameters
- iItem
-
Type:
System::Int32
[in] Integer identifying the item number for a marker type's context menu command. Values typically range from 0 to 9, but the marker type may also support command values 101 through 103. For more information about these command values, see MarkerCommandValues.
- pbstrText
-
Type:
array<System::String^>^
[out] Pointer to a string identifying the marker type command text for the context menu.
- pcmdf
-
Type:
array<System::UInt32>^
[out] Specifies command flags.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From textmgr.idl:
HRESULT IVsTextLineMarker::GetMarkerCommandInfo( [in] long iItem, [out, custom(uuid_IVsTextMarker, "optional")] BSTR * pbstrText, [out] DWORD* pcmdf );
Use this method to return command information associated with a given marker type. Use ExecMarkerCommand to execute the command against the marker type.
Show: