Spread Windows Forms 10.0 Product Documentation
SheetView Constructor(ISheetDataModel)
Example 


Data model
Creates a sheet (SheetView object) according to a specified data model.
Syntax
'Declaration
 
Public Function New( _
   ByVal dataModel As ISheetDataModel _
)
'Usage
 
Dim dataModel As ISheetDataModel
 
Dim instance As New SheetView(dataModel)
public SheetView( 
   ISheetDataModel dataModel
)

Parameters

dataModel
Data model
Example
This example creates a SheetView object, adds it to the collection of sheets, and applies it to the active sheet.
Dim dm As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(4, 4)
Dim sv As New FarPoint.Win.Spread.SheetView(dm)
FpSpread1.Sheets.Add(sv)
FpSpread1.ActiveSheet = sv
FarPoint.Win.Spread.Model.DefaultSheetDataModel dm = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(4, 4);
FarPoint.Win.Spread.SheetView sv = new FarPoint.Win.Spread.SheetView(dm);
fpSpread1.Sheets.Add(sv);
fpSpread1.ActiveSheet = sv;
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SheetView Class
SheetView Members
Overload List

User-Task Documentation

Adding a Sheet

 

 


Copyright © GrapeCity, inc. All rights reserved.