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.
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
'Usage
Dim instance As IVsIME
Dim HIMC As UInteger
Dim lpcf As CANDIDATEFORM()
Dim pfRetVal As Integer
Dim returnValue As Integer
returnValue = instance.SetImmCandidateWindow(HIMC, _
lpcf, pfRetVal)
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.