Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / DefaultSheetSelectionModel Class / AnchorColumn Property
Example


In This Topic
    AnchorColumn Property (DefaultSheetSelectionModel)
    In This Topic
    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()})
    See Also