Spread Silverlight Documentation
ResetTabStop Method (StyleInfo)
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > StyleInfo Class : ResetTabStop Method
Resets the TabStop property to its default value.
Syntax
'Declaration
 
Public Overridable Sub ResetTabStop() 
'Usage
 
Dim instance As StyleInfo
 
instance.ResetTabStop()
public virtual void ResetTabStop()
Example
This example uses the ResetTabStop method.
GrapeCity.Windows.SpreadSheet.Data.StyleInfo style = new GrapeCity.Windows.SpreadSheet.Data.StyleInfo();
style.TabStop = false;
style.ShrinkToFit = true;
style.Name = "Style1";
gcSpreadSheet1.ActiveSheet.NamedStyles.Add(style);
gcSpreadSheet1.ActiveSheet.Cells[1, 1].StyleName = "Style1";
listBox1.Items.Add(style.IsShrinkToFitSet().ToString());
listBox1.Items.Add(style.IsTabStopSet().ToString());
//style.ResetTabStop();
//style.ResetShrinkToFit();
Dim style As New GrapeCity.Windows.SpreadSheet.Data.StyleInfo()
style.TabStop = False
style.ShrinkToFit = True
style.Name = "Style1"
GcSpreadSheet1.ActiveSheet.NamedStyles.Add(style)
GcSpreadSheet1.ActiveSheet.Cells(1, 1).StyleName = "Style1"
ListBox1.Items.Add(style.IsShrinkToFitSet.ToString())
ListBox1.Items.Add(style.IsTabStopSet.ToString())
'style.ResetTabStop()
'style.ResetShrinkToFit()
See Also

Reference

StyleInfo Class
StyleInfo Members