IVsCompletionSet.GetDescriptionText 方法
返回一个描述该指示项的文本完成项。
命名空间: Microsoft.VisualStudio.TextManager.Interop
程序集: Microsoft.VisualStudio.TextManager.Interop(在 Microsoft.VisualStudio.TextManager.Interop.dll 中)
语法
声明
Function GetDescriptionText ( _
iIndex As Integer, _
<OutAttribute> ByRef pbstrDescription As String _
) As Integer
int GetDescriptionText(
int iIndex,
out string pbstrDescription
)
int GetDescriptionText(
[InAttribute] int iIndex,
[OutAttribute] String^% pbstrDescription
)
abstract GetDescriptionText :
iIndex:int *
pbstrDescription:string byref -> int
function GetDescriptionText(
iIndex : int,
pbstrDescription : String
) : int
参数
iIndex
类型:Int32[in] 标识在完成的索引项目设置提供标题文本。
pbstrDescription
类型:String%[out] 返回包含说明的文本字符串。
返回值
类型:Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 textmgr.idl:
HRESULT IVsCompletionSet::GetDescriptionText(
[in] long iIndex,
[out] BSTR *pbstrDescription
);
,它需要更新为完成安装项目当前显示的标题文本视图中时,视图 GetDescriptionText 调用方法。 视图一次调用它需要更新的此方法完成每个设置的项目。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。