Spread Windows Forms 10.0 Product Documentation
AnchorColumn Property (DefaultSheetSelectionModel)
Example 


Gets the column index of the first cell in the selection of cells.
Syntax
'Declaration
 
Public Overrides ReadOnly Property AnchorColumn As Integer
'Usage
 
Dim instance As DefaultSheetSelectionModel
Dim value As Integer
 
value = instance.AnchorColumn
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.
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()});
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 Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

DefaultSheetSelectionModel Class
DefaultSheetSelectionModel Members

 

 


Copyright © GrapeCity, inc. All rights reserved.