Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Return the text of a text span as a BSTR
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function GetTextBSTR ( _
pts As TextSpan(), _
<OutAttribute> ByRef pbstrText As String _
) As Integer
int GetTextBSTR(
TextSpan[] pts,
out string pbstrText
)
int GetTextBSTR(
[InAttribute] array<TextSpan>^ pts,
[OutAttribute] String^% pbstrText
)
abstract GetTextBSTR :
pts:TextSpan[] *
pbstrText:string byref -> int
function GetTextBSTR(
pts : TextSpan[],
pbstrText : String
) : int
Parameters
pts
Type: array<Microsoft.VisualStudio.TextManager.Interop.TextSpan[][in] Pointer to a TextSpan structure.
pbstrText
Type: System.String%[out] Pointer to a BSTR containing the text.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsTextImage::GetTextBSTR(
[in] const TextSpan * pts,
[out, retval] BSTR * pbstrText
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.