Share via


Window.IMEMode Property 

Returns or sets the default start-up mode for the Japanese Input Method Editor (IME).

Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in microsoft.office.interop.word.dll)

Usage

Dim window1 As Window

Dim returnValue As WdIMEMode
returnValue = window1.IMEMode

Dim sampleValue As WdIMEMode
window1.IMEMode = sampleValue

Syntax

Property IMEMode() As WdIMEMode
WdIMEMode IMEMode {get; set;}
property WdIMEMode^ IMEMode{
    WdIMEMode^ get();
    Void set(WdIMEMode^);
}
public WdIMEMode get_IMEMode();
public void set_IMEMode(WdIMEMode);
function get IMEMode() : WdIMEMode;
function set IMEMode(WdIMEMode);

Remarks

WdIMEMode can be one of these WdIMEMode constants:

wdIMEModeAlpha– Activates the IME in half-width Latin mode.

wdIMEModeAlphaFull– Activates the IME in full-width Latin mode.

wdIMEModeHangul– Activates the IME in half-width Hangul mode.

wdIMEModeHangulFull– Activates the IME in full-width Hangul mode.

wdIMEModeHiragana– Activates the IME in full-width hiragana mode.

wdIMEModeKatakana– Activates the IME in full-width katakana mode.

wdIMEModeKatakanaHalf– Activates the IME in half-width katakana mode.

wdIMEModeNoControl– Does not change the IME mode.

wdIMEModeOff– Disables the IME and activates Latin text entry.

wdIMEModeOn– Activates the IME.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Window Interface
Microsoft.Office.Interop.Word Namespace

Other Resources

Window Members