IVsTextMarkerClient.GetMarkerCommandInfo 方法
查詢命令資訊的資料標記。
命名空間: Microsoft.VisualStudio.TextManager.Interop
組件: Microsoft.VisualStudio.TextManager.Interop (在 Microsoft.VisualStudio.TextManager.Interop.dll 中)
語法
'宣告
Function GetMarkerCommandInfo ( _
pMarker As IVsTextMarker, _
iItem As Integer, _
<OutAttribute> pbstrText As String(), _
<OutAttribute> pcmdf As UInteger() _
) As Integer
int GetMarkerCommandInfo(
IVsTextMarker pMarker,
int iItem,
string[] pbstrText,
uint[] pcmdf
)
int GetMarkerCommandInfo(
[InAttribute] IVsTextMarker^ pMarker,
[InAttribute] int iItem,
[OutAttribute] array<String^>^ pbstrText,
[OutAttribute] array<unsigned int>^ pcmdf
)
abstract GetMarkerCommandInfo :
pMarker:IVsTextMarker *
iItem:int *
pbstrText:string[] byref *
pcmdf:uint32[] byref -> int
function GetMarkerCommandInfo(
pMarker : IVsTextMarker,
iItem : int,
pbstrText : String[],
pcmdf : uint[]
) : int
參數
pMarker
類型:Microsoft.VisualStudio.TextManager.Interop.IVsTextMarker[in]指標IVsTextMarker標記的介面。
iItem
類型:Int32[] in使用者從內容功能表選取命令。 為一系列iItem的值,請參閱MarkerCommandValues。
pbstrText
類型:array<String[][] out在快顯功能表中的 [標記] 指令的文字。
pcmdf
類型:array<UInt32[][] out命令旗標的指標。
傳回值
類型:Int32
如果此方法將會成功,則會傳回S_OK。如果失敗,它就會傳回錯誤碼。
備註
COM 簽章
從 textmgr.idl:
HRESULT IVsTextMarkerClient::GetMarkerCommandInfo(
[in] IVsTextMarker* pMarker,
[in] long iItem,
[out, custom(uuid_IVsTextMarkerClient, "optional")] BSTR * pbstrText,
[out] DWORD* pcmdf
);
實作這個方法,以及ExecMarkerCommand來覆寫本身的文字標記為快顯功能表所提供的資料標記命令。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。