Spread Windows Forms 12.0 Product Documentation
Add Method (BaseSheetSpanModel)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > BaseSheetSpanModel Class : Add Method
Row index at which to start span
Column index at which to start span
Number of rows in span
Number of columns in span
Adds a cell span to the collection.
Syntax
'Declaration
 
Public Overridable Function Add( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) As Boolean
'Usage
 
Dim instance As BaseSheetSpanModel
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
Dim value As Boolean
 
value = instance.Add(row, column, rowCount, columnCount)
public virtual bool Add( 
   int row,
   int column,
   int rowCount,
   int columnCount
)

Parameters

row
Row index at which to start span
column
Column index at which to start span
rowCount
Number of rows in span
columnCount
Number of columns in span

Return Value

Boolean: true if the cell span added successfully; false otherwise
Example
This example adds a span to the model.
FarPoint.Win.Spread.Model.BaseSheetSpanModel spanModel;
spanModel = (FarPoint.Win.Spread.Model.BaseSheetSpanModel)fpSpread1.ActiveSheet.Models.Span;
spanModel.Add(0, 0, 2, 2);
Dim spanModel As FarPoint.Win.Spread.Model.BaseSheetSpanModel
spanModel = fpSpread1.ActiveSheet.Models.Span
spanModel.Add(0, 0, 2, 2)
See Also

Reference

BaseSheetSpanModel Class
BaseSheetSpanModel Members