Syntax

expression.IMEMode

expression A variable that represents a Validation object.

Remarks

Constant Description
xlIMEModeAlpha Half-width alphanumeric
xlIMEModeAlphaFull Full-width alphanumeric
xlIMEModeDisable Disable
xlIMEModeHiragana Hiragana
xlIMEModeKatakana Katakana
xlIMEModeKatakanaHalf Katakana (half-width)
xlIMEModeNoControl No control
xlIMEModeOff Off (English mode)
xlIMEModeOn On

Note that this property can be set only when Japanese language support has been installed and selected.

Example

This example sets the data input rule for cell E5.

Visual Basic for Applications
With Range("E5").Validation .Add Type:=xlValidateWholeNumber, _ AlertStyle:= xlValidAlertStop, _ Operator:=xlBetween, Formula1:="5", Formula2:="10" .InputTitle = " seisuuchi seisuuchi seisuuchi" .ErrorTitle = " seisuuchi seisuuchi seisuuchi" .InputMessage = "5 kara kara 10 no seisuu seisuu o nyuuryoku nyuuryoku shite shite kudasai kudasai kudasai kudasai ." .ErrorMessage = " nyuuryoku nyuuryoku dekirunowa dekirunowa dekirunowa dekirunowa dekirunowa 5 kara kara 10 madeno madeno madeno ne desu desu ." .IMEMode = xlIMEModeAlpha End With
IME IME mode imemode imemode property

See also: