Spread Windows Forms 12.0 Product Documentation
ResetImeSentenceMode Method (NamedStyle)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > NamedStyle Class : ResetImeSentenceMode Method
Resets the IME sentence mode for the style to the default setting (not set).
Syntax
'Declaration
 
Public Overrides Sub ResetImeSentenceMode() 
'Usage
 
Dim instance As NamedStyle
 
instance.ResetImeSentenceMode()
public override void ResetImeSentenceMode()
Example
This example uses the ResetImeSentenceMode method.
FarPoint.Win.Spread.NamedStyle ns = new FarPoint.Win.Spread.NamedStyle("StyleData", "DataAreaDefault");
ns.BackColor = Color.LightBlue;
ns.Border = new FarPoint.Win.LineBorder(Color.DarkBlue, 2);
ns.Font = new Font("Comic Sans Serif", 12);
ns.ForeColor = Color.Red;
ns.ImeMode = ImeMode.Alpha;
ns.ImeSentenceMode = FarPoint.Win.ImeSentenceMode.Inherit;
ns.Name = "StyleData";
ns.Parent = "DataAreaDefault";
fpSpread1.NamedStyles.Add(ns);
fpSpread1.ActiveSheet.Cells[0, 0].StyleName = "StyleData";
fpSpread1.ActiveSheet.SetText(0, 0, "NamedStyle");
fpSpread1.ActiveSheet.Columns[0].Width = 120;
fpSpread1.ActiveSheet.Rows[0].Height = 80;

ns.ResetImeMode();
ns.ResetImeSentenceMode();  
Dim ns As New FarPoint.Win.Spread.NamedStyle("StyleData", "DataAreaDefault")
ns.BackColor = Color.LightBlue
ns.Border = New FarPoint.Win.LineBorder(Color.DarkBlue, 2)
ns.Font = New Font("Comic Sans Serif", 12)
ns.ForeColor = Color.Red
ns.ImeMode = ImeMode.Alpha
ns.ImeSentenceMode = FarPoint.Win.ImeSentenceMode.Inherit
ns.Name = "StyleData"
ns.Parent = "DataAreaDefault"
fpSpread1.NamedStyles.Add(ns)
fpSpread1.ActiveSheet.Cells(0, 0).StyleName = "StyleData"
fpSpread1.ActiveSheet.SetText(0, 0, "NamedStyle")
fpSpread1.ActiveSheet.Columns(0).Width = 120
fpSpread1.ActiveSheet.Rows(0).Height = 80
ns.ResetImeMode()
ns.ResetImeSentenceMode()
See Also

Reference

NamedStyle Class
NamedStyle Members