IVsTextLineMarker.GetMarkerCommandInfo 方法

返回文本标记订单信息。

命名空间:  Microsoft.VisualStudio.TextManager.Interop
程序集:  Microsoft.VisualStudio.TextManager.Interop(在 Microsoft.VisualStudio.TextManager.Interop.dll 中)

语法

声明
Function GetMarkerCommandInfo ( _
    iItem As Integer, _
    <OutAttribute> pbstrText As String(), _
    <OutAttribute> pcmdf As UInteger() _
) As Integer
int GetMarkerCommandInfo(
    int iItem,
    string[] pbstrText,
    uint[] pcmdf
)
int GetMarkerCommandInfo(
    [InAttribute] int iItem, 
    [OutAttribute] array<String^>^ pbstrText, 
    [OutAttribute] array<unsigned int>^ pcmdf
)
abstract GetMarkerCommandInfo : 
        iItem:int * 
        pbstrText:string[] byref * 
        pcmdf:uint32[] byref -> int
function GetMarkerCommandInfo(
    iItem : int, 
    pbstrText : String[], 
    pcmdf : uint[]
) : int

参数

  • iItem
    类型:Int32

    [in] 标识标记类型的上下文菜单命令的整数的项编号。 值从 0 通常大小为 9,但是,标记类型可能还支持命令值 101 到 103。 有关这些命令值的更多信息,请参见 MarkerCommandValues

  • pbstrText
    类型:array<String[]

    [out] 设置为标识标记类型上下文菜单的命令文本字符串的指针。

  • pcmdf
    类型:array<UInt32[]

    [out] 指定命令标志。

返回值

类型:Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。

备注

COM 签名

从 textmgr.idl:

HRESULT IVsTextLineMarker::GetMarkerCommandInfo(
   [in] long iItem,
   [out, custom(uuid_IVsTextMarker, "optional")] BSTR * pbstrText,
   [out] DWORD* pcmdf
);

使用此方法返回命令信息与特定标记类型。 使用 ExecMarkerCommand 执行该命令标记类型。

.NET Framework 安全性

请参阅

参考

IVsTextLineMarker 接口

Microsoft.VisualStudio.TextManager.Interop 命名空间