IVsTextImage.GetText 方法
傳回文字範圍的文字。
命名空間: Microsoft.VisualStudio.TextManager.Interop
組件: Microsoft.VisualStudio.TextManager.Interop (在 Microsoft.VisualStudio.TextManager.Interop.dll 中)
語法
'宣告
Function GetText ( _
pts As TextSpan(), _
cch As Integer, _
<OutAttribute> psz As UShort() _
) As Integer
int GetText(
TextSpan[] pts,
int cch,
ushort[] psz
)
int GetText(
[InAttribute] array<TextSpan>^ pts,
[InAttribute] int cch,
[OutAttribute] array<unsigned short>^ psz
)
abstract GetText :
pts:TextSpan[] *
cch:int *
psz:uint16[] byref -> int
function GetText(
pts : TextSpan[],
cch : int,
psz : ushort[]
) : int
參數
pts
類型:array<Microsoft.VisualStudio.TextManager.Interop.TextSpan[][in]指標TextSpan結構。
cch
類型:Int32[in]要傳回的字元數。
psz
類型:array<UInt16[][] out包含文字的 null 結尾字串的指標。
傳回值
類型:Int32
如果此方法將會成功,則會傳回S_OK。如果失敗,它就會傳回錯誤碼。
備註
COM 簽章
從 textmgr.idl:
HRESULT IVsTextImage::GetText(
[in] const TextSpan * pts,
[in] LONG cch,
[out, size_is(cch)] LPOLESTR psz
);
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。