Spread Windows Forms 12.0 Product Documentation
TabStop Property (AlternatingRow)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > AlternatingRow Class : TabStop Property
Gets or sets whether the user can set focus to cells in this row using the Tab key.
Syntax
'Declaration
 
Public Property TabStop As Boolean
'Usage
 
Dim instance As AlternatingRow
Dim value As Boolean
 
instance.TabStop = value
 
value = instance.TabStop
public bool TabStop {get; set;}

Property Value

Boolean value: true if the user can set focus to the cell using the Tab key, false otherwise
Example
This example skips the first alternating row when tabbing through the component.
fpSpread1.ActiveSheet.AlternatingRows[0].TabStop = false;
fpSpread1.ActiveSheet.AlternatingRows(0).TabStop = False
See Also

Reference

AlternatingRow Class
AlternatingRow Members