Spread Windows Forms 12.0 Product Documentation
LeadColumn Property (BaseSheetSelectionModel)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > BaseSheetSelectionModel Class : LeadColumn Property
Gets the column index of the farthest cell in the selection of cells.
Syntax
'Declaration
 
Public Overridable ReadOnly Property LeadColumn As Integer
'Usage
 
Dim instance As BaseSheetSelectionModel
Dim value As Integer
 
value = instance.LeadColumn
public virtual int LeadColumn {get;}

Property Value

Integer column index
Remarks
If you are selecting a range of cells, then LeadColumn and LeadRow will return the farthest cell.  If you are selecting a single row or a range of rows, then LeadColumn will return 0 and LeadRow will return the farthest row.  If you are selecting a column or a range of columns then LeadColumn will return the farthest column and LeadRow will return 0.
Example
This example illustrates the use of this member by returning the column index of the last cell selected in the range.
private void menuItem1_Click(object sender, System.EventArgs e)
{
FarPoint.Win.Spread.Model.BaseSheetSelectionModel selModel;
int c, r;
selModel = (FarPoint.Win.Spread.Model.BaseSheetSelectionModel)fpSpread1.ActiveSheet.Models.Selection;
selModel.SetSelection(0, 0, 3, 3);
c = selModel.LeadColumn;
r = selModel.LeadRow;
listBox1.Items.AddRange(new Object[] {c.ToString(), r.ToString()});
}
Private Sub MenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem1.Click
Dim selModel As FarPoint.Win.Spread.Model.BaseSheetSelectionModel
Dim c, r As Integer
selModel = fpSpread1.ActiveSheet.Models.Selection
selModel.SetSelection(0, 0, 3, 3)
c = selModel.LeadColumn
r = selModel.LeadRow
ListBox1.Items.AddRange(New Object() {c.ToString(), r.ToString()})
End Sub
See Also

Reference

BaseSheetSelectionModel Class
BaseSheetSelectionModel Members