Spread Windows Forms 12.0 Product Documentation
Column Property (CellRange)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > CellRange Class : Column Property
Gets the column index of the first cell in the range.
Syntax
'Declaration
 
Public Property Column As Integer
'Usage
 
Dim instance As CellRange
Dim value As Integer
 
instance.Column = value
 
value = instance.Column
public int Column {get; set;}

Property Value

Integer column index
Example
This example creates a range of cells and uses the range to set up a span of cells.
FarPoint.Win.Spread.Model.CellRange cr = new FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3);
fpSpread1.ActiveSheet.Models.Span.Add(cr.Row, cr.Column, cr.RowCount, cr.ColumnCount);
Dim cr As New FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 3)
FpSpread1.ActiveSheet.Models.Span.Add(cr.Row, cr.Column, cr.RowCount, cr.ColumnCount)
See Also

Reference

CellRange Class
CellRange Members