Gets the row index of the first cell in the selection of cells.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public Overrides ReadOnly Property AnchorRow As Integer  | 
 
| C# |   | 
|---|
public override int AnchorRow {get;} | 
 
            
            
            Property Value
Integer row index
 
            
			
			
            
            
            
Example
This example specifies the column index and row index of the first cell selected in the range.
             
| C# |  Copy Code | 
|---|
FarPoint.Win.Spread.Model.DefaultSheetSelectionModel defselModel = new FarPoint.Win.Spread.Model.DefaultSheetSelectionModel();
int i, j;
fpSpread1.ActiveSheet.Models.Selection = defselModel;
defselModel.SetSelection(0, 0, 5, 5);
i = defselModel.AnchorColumn;
j = defselModel.AnchorRow;
listBox1.Items.AddRange(new Object[] {i.ToString(), j.ToString()}); | 
 
| Visual Basic |  Copy Code | 
|---|
Dim defselModel As New FarPoint.Win.Spread.Model.DefaultSheetSelectionModel()
Dim i, j As Integer
FpSpread1.ActiveSheet.Models.Selection = defselModel
defselModel.SetSelection(0, 0, 5, 5)
i = defselModel.AnchorColumn
j = defselModel.AnchorRow
ListBox1.Items.AddRange(New Object() {i.ToString(), j.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