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


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : ResetInputScope Method
Resets the InputScope property to its default value.
Syntax
'Declaration
 
Public Overridable Sub ResetInputScope() 
'Usage
 
Dim instance As StyleInfo
 
instance.ResetInputScope()
public virtual void ResetInputScope()
Example
This example uses the ResetInputScope method.
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
si.ImeMode = ImeMode.Alpha;
si.ImeSentenceMode = FarPoint.Win.ImeSentenceMode.BiasForNames;
si.InputScope = FarPoint.Win.InputScopeNameValue.Number;
si.ResetImeMode();
si.ResetImeSentenceMode();
si.ResetInputScope();
fpSpread1.ActiveSheet.DefaultStyle = si;
Dim si As New FarPoint.Win.Spread.StyleInfo()
si.ImeMode = ImeMode.Alpha
si.ImeSentenceMode = FarPoint.Win.ImeSentenceMode.BiasForNames
si.InputScope = FarPoint.Win.InputScopeNameValue.Number
si.ResetImeMode()
si.ResetImeSentenceMode()
si.ResetInputScope()
fpSpread1.ActiveSheet.DefaultStyle = si
See Also

Reference

StyleInfo Class
StyleInfo Members