Spread Windows Forms 7.0 Product Documentation
AnchorRow Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetSelectionModel Class : AnchorRow Property


Glossary Item Box

Gets the row index of the first cell in the selection of cells.

Syntax

Visual Basic (Declaration) 
Public Overrides ReadOnly Property AnchorRow As Integer
Visual Basic (Usage)Copy Code
Dim instance As DefaultSheetSelectionModel
Dim value As Integer
 
value = instance.AnchorRow
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 BasicCopy 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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.