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


Glossary Item Box

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

Syntax

Visual Basic (Declaration) 
Public Overrides ReadOnly Property AnchorColumn As Integer
Visual Basic (Usage)Copy Code
Dim instance As DefaultSheetSelectionModel
Dim value As Integer
 
value = instance.AnchorColumn
C# 
public override int AnchorColumn {get;}

Property Value

Integer column 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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

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