| Visual Basic (Declaration) | |
|---|---|
Public Function New( _ ByVal dataSource As DataSet _ )  | |
| Visual Basic (Usage) |  Copy Code | 
|---|---|
Dim dataSource As DataSet Dim instance As New DefaultSheetDataModel(dataSource)  | |
| C# | |
|---|---|
public DefaultSheetDataModel( DataSet dataSource )  | |
Parameters
- dataSource
 - Data source to be used for this model
 
This example creates a new DefaultSheetDataModel and attaches it to the data model of the active sheet.
             
            
            | C# |  Copy Code | 
|---|---|
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel();
dataModel.RowCount = 5;
dataModel.ColumnCount = 5;
fpSpread1.ActiveSheet.Models.Data = dataModel; | |
| Visual Basic |  Copy Code | 
|---|---|
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel() dataModel.RowCount = 5 dataModel.ColumnCount = 5 FpSpread1.ActiveSheet.Models.Data = dataModel  | |
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8