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


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

Property Value

Integer number of columns
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