[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IValidation.IMEMode

IMEMode Property

IMEMode

Gets or sets the input method editor (IME) mode for the data validation rule.

This value describes the Japanese input rules applied to validated cells.

Declaration
IMEModeType IMEMode { get; set; }
Property IMEMode As IMEModeType
Examples
IValidation validation = worksheet.Range["A1"].Validation;
validation.Add(ValidationType.Whole, ValidationAlertStyle.Stop, ValidationOperator.Between, 1, 10);
validation.IMEMode = IMEModeType.Hiragana;
IMEModeType imeMode = validation.IMEMode;