Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Loads a text image from memory.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function LoadTextImageFromMemory ( _
pImage As IVsTextImage, _
vstffIn As UInteger, _
cbData As UInteger, _
pData As Byte(), _
<OutAttribute> ByRef pvstffOut As UInteger _
) As Integer
int LoadTextImageFromMemory(
IVsTextImage pImage,
uint vstffIn,
uint cbData,
byte[] pData,
out uint pvstffOut
)
int LoadTextImageFromMemory(
[InAttribute] IVsTextImage^ pImage,
[InAttribute] unsigned int vstffIn,
[InAttribute] unsigned int cbData,
[InAttribute] array<unsigned char>^ pData,
[OutAttribute] unsigned int% pvstffOut
)
abstract LoadTextImageFromMemory :
pImage:IVsTextImage *
vstffIn:uint32 *
cbData:uint32 *
pData:byte[] *
pvstffOut:uint32 byref -> int
function LoadTextImageFromMemory(
pImage : IVsTextImage,
vstffIn : uint,
cbData : uint,
pData : byte[],
pvstffOut : uint
) : int
Parameters
- pImage
Type: Microsoft.VisualStudio.TextManager.Interop.IVsTextImage
[in] The text image to load.
- vstffIn
Type: System.UInt32
[in] Instructions for text format and detection.
- cbData
Type: System.UInt32
[in] The size of the data in bytes.
- pData
Type: array<System.Byte[]
[in] The data.
- pvstffOut
Type: System.UInt32%
[out] The format used.
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 textfind.idl:
HRESULT IVsTextImageUtilities::LoadTextImageFromMemory(
[in] IVsTextImage * pImage,
[in] VSTFF vstffIn,
[in] DWORD cbData,
[in,size_is(cbData)] const BYTE * pData,
[out, retval] VSTFF * pvstffOut
);
.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.