Spread ASP.NET 6.0 Product Documentation
ImeMode Enumeration
Example  See Also  Send Feedback
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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.