Spread for ASP.NET 7.0 Product Documentation
ImeMode Enumeration
Example  See Also  Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace : ImeMode Enumeration


Glossary Item Box

Specifies the state of an Input Method Editor (IME) for using a Western keyboard for entering East Asian characters.

Syntax

Visual Basic (Declaration) 
Public Enum ImeMode 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As ImeMode
C# 
public enum ImeMode : System.Enum 

Members

MemberDescription
ActiveAll characters are entered through the IME. Users can still deactivate the IME.
AutoIME state is not affected. This is the same as not specifying the Input Method Editor state.
DisabledIME is completely disabled. Users cannot activate the IME if the control has focus.
InactiveAll characters are entered without IME. Users can still activate the IME.

Example

This example sets ImeMode.
C#Copy Code
GeneralCellType obj = new GeneralCellType();
obj. ImeMode = ImeMode.Disabled;
fpSpread1.ActiveSheetView.Cells[0,0].CellType  = obj;
Visual BasicCopy Code
Dim obj as New GeneralCellType()
obj. ImeMode = ImeMode.Disabled
FpSpread1.ActiveSheetView.Cells(0,0)CellType  = obj

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         FarPoint.Web.Spread.ImeMode

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.