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


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleInfo Class : IsTabStopSet Method
Gets whether the tab stop setting of the cell (TabStop property) is set.
Syntax
'Declaration
 
Public Overridable Function IsTabStopSet() As Boolean
'Usage
 
Dim instance As StyleInfo
Dim value As Boolean
 
value = instance.IsTabStopSet()
public virtual bool IsTabStopSet()

Return Value

Boolean: true if the tab stop setting of the cell (TabStop property) is set; false if not
Example
This example returns if the tabstop is set.
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo(); 
si.TabStop = true; 
fpSpread1.ActiveSheet.DefaultStyle = si; 
bool b; 
b = si.IsTabStopSet();
Dim si As New FarPoint.Win.Spread.StyleInfo
si.TabStop = True
fpSpread1.ActiveSheet.DefaultStyle = si
Dim b as Boolean
b = si.IsTabStopSet()
See Also

Reference

StyleInfo Class
StyleInfo Members