'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;}
'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;}
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()