IVsHTMLConverter.ConvertToEntities(String, UInt32, UInt16[], UInt32) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
文字列を、文字 "ä" の "ä" などのエンティティ参照を含む文字列に変換します。
public:
int ConvertToEntities(System::String ^ szToConvert, System::UInt32 cchBuffSize, cli::array <System::UInt16> ^ szBuffer, [Runtime::InteropServices::Out] System::UInt32 % pcchBuffSizeActual);
int ConvertToEntities(std::wstring const & szToConvert, unsigned int cchBuffSize, std::Array <unsigned short> const & szBuffer, [Runtime::InteropServices::Out] unsigned int & pcchBuffSizeActual);
public int ConvertToEntities (string szToConvert, uint cchBuffSize, ushort[] szBuffer, out uint pcchBuffSizeActual);
abstract member ConvertToEntities : string * uint32 * uint16[] * uint32 -> int
Public Function ConvertToEntities (szToConvert As String, cchBuffSize As UInteger, szBuffer As UShort(), ByRef pcchBuffSizeActual As UInteger) As Integer
パラメーター
- szToConvert
- String
[入力]変換する文字列。
- cchBuffSize
- UInt32
[入力]変換された文字列を格納するバッファーの長さ。
- szBuffer
- UInt16[]
[out]変換された文字列を含むバッファー。
- pcchBuffSizeActual
- UInt32
[out]使用されるバッファーの実際のサイズ。
戻り値
メソッドが成功した場合は S_OK を返します。 失敗した場合はエラー コードを返します。
注釈
COM 署名
vsshell.idl から:
HRESULT IVsHTMLConverter::ConvertToEntities(
[in] LPCOLESTR szToConvert,
[in] ULONG cchBuffSize,
[in, out, size_is(cchBuffSize)] OLECHAR szBuffer[],
[out] ULONG *pcchBuffSizeActual
);