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


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

Property Value

Boolean: true if the cells in the row can receive focus; false otherwise
Example
This example locks the alternating rows.
private void fpSpread1CellClick(object sender, FarPoint.Win.Spread.CellClickEventArgs e)
{      
     foreach (FarPoint.Win.Spread.AlternatingRow ar in fpSpread1.ActiveSheet.AlternatingRows) 
     { 
           ar.CanFocus = false; 
     }
}
Private Sub fpSpread1CellClick(ByVal sender As Object, ByVal e As  FarPoint.Win.Spread.CellClickEventArgs) Handles fpSpread1.CellClick

Dim ar As FarPoint.Win.Spread.AlternatingRow
For Each ar In fpSpread1.ActiveSheet.AlternatingRows
          ar.CanFocus = False
     Next

End Sub
See Also

Reference

AlternatingRow Class
AlternatingRow Members