Gets or sets the row index of the active cell on the sheet.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public Property ActiveRowIndex As Integer  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As SheetView
Dim value As Integer
 
instance.ActiveRowIndex = value
 
value = instance.ActiveRowIndex  | 
 
| C# |   | 
|---|
public int ActiveRowIndex {get; set;} | 
 
            
            
            Property Value
Integer row index of the active row
 
            
			
			
            Remarks
            
            
Example
This example illustrates the use of this member by returning the index of the active column and active row.
             
| C# |  Copy Code | 
|---|
fpSpread1.ActiveSheet.SetActiveCell(2, 2);
label1.Text = "The active column is " + fpSpread1.ActiveSheet.ActiveColumnIndex.ToString() + " and the active row is " + fpSpread1.ActiveSheet.ActiveRowIndex.ToString();  | 
 
| Visual Basic |  Copy Code | 
|---|
FpSpread1.ActiveSheet.SetActiveCell(2, 2)
Label1.Text = "The active column is " & FpSpread1.ActiveSheet.ActiveColumnIndex.ToString() & " and the active row is " & FpSpread1.ActiveSheet.ActiveRowIndex.ToString()  | 
 
 
            
            
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
 
            
            
See Also