Visual Basic (Declaration) | |
---|---|
Public Function New( _ ByVal dataSource As DataSet _ ) |
Visual Basic (Usage) | ![]() |
---|---|
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# | ![]() |
---|---|
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 | ![]() |
---|---|
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel() dataModel.RowCount = 5 dataModel.ColumnCount = 5 FpSpread1.ActiveSheet.Models.Data = dataModel |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2