返回文本标记订单信息。
命名空间: 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] 指定命令标志。 pcmdf 的值从在 Platform SDK 的 tagOLECMDF 枚举中采用。
返回值
类型:Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 textmgr.idl:
HRESULT IVsTextMarker::GetMarkerCommandInfo(
[in] long iItem,
[out, custom(uuid_IVsTextMarker, "optional")] BSTR * pbstrText,
[out] DWORD* pcmdf
);
使用此方法返回命令信息与特定标记类型。 使用 ExecMarkerCommand 执行该命令标记类型。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。