Spread Windows Forms 12.0 Product Documentation
IsImeModeSet Method (StyleInfo)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : IsImeModeSet Method
Gets whether IME mode is on (ImeMode property set) for a cell.
Syntax
'Declaration
 
Public Overridable Function IsImeModeSet() As Boolean
'Usage
 
Dim instance As StyleInfo
Dim value As Boolean
 
value = instance.IsImeModeSet()
public virtual bool IsImeModeSet()
Example
This example uses the IsImeModeSet method.
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
si.ImeMode = ImeMode.Inherit;
si.ImeSentenceMode = FarPoint.Win.ImeSentenceMode.Normal;
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = si;            
listBox1.Items.Add(si.IsImeModeSet());
listBox1.Items.Add(si.IsImeSentenceModeSet());
Dim si As New FarPoint.Win.Spread.StyleInfo()
si.ImeMode = ImeMode.Inherit
si.ImeSentenceMode = FarPoint.Win.ImeSentenceMode.Normal
fpSpread1.ActiveSheet.ColumnHeader.DefaultStyle = si
ListBox1.Items.Add(si.IsImeModeSet())
ListBox1.Items.Add(si.IsImeSentenceModeSet())
See Also

Reference

StyleInfo Class
StyleInfo Members