Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / AlternatingRow Class / CanFocus Property
Example


In This Topic
    CanFocus Property (AlternatingRow)
    In This Topic
    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