Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets aspects of the candidate list window. Provides a wrapper for ImmSetCandidateWindow.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function SetImmCandidateWindow ( _
HIMC As UInteger, _
lpcf As CANDIDATEFORM(), _
<OutAttribute> ByRef pfRetVal As Integer _
) As Integer
int SetImmCandidateWindow(
uint HIMC,
CANDIDATEFORM[] lpcf,
out int pfRetVal
)
int SetImmCandidateWindow(
[InAttribute] unsigned int HIMC,
[InAttribute] array<CANDIDATEFORM>^ lpcf,
[OutAttribute] int% pfRetVal
)
abstract SetImmCandidateWindow :
HIMC:uint32 *
lpcf:CANDIDATEFORM[] *
pfRetVal:int byref -> int
function SetImmCandidateWindow(
HIMC : uint,
lpcf : CANDIDATEFORM[],
pfRetVal : int
) : int
Parameters
- HIMC
Type: System.UInt32
[in] Handle to the IME input context.
- lpcf
Type: array<Microsoft.VisualStudio.Shell.Interop.CANDIDATEFORM[]
- pfRetVal
Type: System.Int32%
[out] Error return value. Set to zero when there is an error. Nonzero otherwise.
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 vsshell.idl:
HRESULT IVsIME::SetImmCandidateWindow(
[in] HIMC himc,
[in] CANDIDATEFORM * lpcf,
[out] BOOL * pfRetVal
);
.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.