Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / ActiveRowIndex Property
Example


In This Topic
    ActiveRowIndex Property (SheetView)
    In This Topic
    Gets or sets the row index of the active cell on the sheet.
    Syntax
    'Declaration
     
    Public Property ActiveRowIndex As Integer
    'Usage
     
    Dim instance As SheetView
    Dim value As Integer
     
    instance.ActiveRowIndex = value
     
    value = instance.ActiveRowIndex
    public int ActiveRowIndex {get; set;}

    Property Value

    Integer row index of the active row
    Remarks
    This property is available at run time only. This property returns -1 or null if there is no active row. Columns or rows that do not exist can not be active.
    Example
    This example illustrates the use of this member by returning the index of the active column and active row.
    fpSpread1.ActiveSheet.SetActiveCell(2, 2);
    label1.Text = "The active column is " + fpSpread1.ActiveSheet.ActiveColumnIndex.ToString() + " and the active row is " + fpSpread1.ActiveSheet.ActiveRowIndex.ToString();
    FpSpread1.ActiveSheet.SetActiveCell(2, 2)
    Label1.Text = "The active column is " & FpSpread1.ActiveSheet.ActiveColumnIndex.ToString() & " and the active row is " & FpSpread1.ActiveSheet.ActiveRowIndex.ToString()
    See Also