Spread for ASP.NET 8.0 Product Documentation
ImeMode Enumeration
Example Example 


Specifies the state of an Input Method Editor (IME) for using a Western keyboard for entering East Asian characters.
Syntax
'Declaration
 
Public Enum ImeMode 
   Inherits System.Enum
'Usage
 
Dim instance As ImeMode
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.
GeneralCellType obj = new GeneralCellType();
obj. ImeMode = ImeMode.Disabled;
fpSpread1.ActiveSheetView.Cells[0,0].CellType  = obj;
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

Reference

FarPoint.Web.Spread Namespace

 

 


Copyright © GrapeCity, inc. All rights reserved.