Spread Windows Forms 12.0 Product Documentation
SheetView Constructor(ISheetDataModel,NamedStyleCollection)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class > SheetView Constructor : SheetView Constructor(ISheetDataModel,NamedStyleCollection)
Data model
Named style
Creates a sheet (SheetView object) according to a specified data model and named style.
Syntax
'Declaration
 
Public Function New( _
   ByVal dataModel As ISheetDataModel, _
   ByVal namedStyles As NamedStyleCollection _
)
'Usage
 
Dim dataModel As ISheetDataModel
Dim namedStyles As NamedStyleCollection
 
Dim instance As New SheetView(dataModel, namedStyles)
public SheetView( 
   ISheetDataModel dataModel,
   NamedStyleCollection namedStyles
)

Parameters

dataModel
Data model
namedStyles
Named style
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 nsc As New FarPoint.Win.Spread.NamedStyleCollection()
Dim ns As New FarPoint.Win.Spread.NamedStyle()
nsc.Add(ns)
Dim sv As New FarPoint.Win.Spread.SheetView(dm, nsc)
FpSpread1.Sheets.Add(sv)
FpSpread1.ActiveSheet = sv
FarPoint.Win.Spread.Model.DefaultSheetDataModel dm = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(4, 4);
FarPoint.Win.Spread.NamedStyleCollection nsc = new FarPoint.Win.Spread.NamedStyleCollection();
FarPoint.Win.Spread.NamedStyle ns = new FarPoint.Win.Spread.NamedStyle();
nsc.Add(ns);
FarPoint.Win.Spread.SheetView sv = new FarPoint.Win.Spread.SheetView(dm, nsc);
fpSpread1.Sheets.Add(sv);
fpSpread1.ActiveSheet = sv;
See Also

Reference

SheetView Class
SheetView Members
Overload List

User-Task Documentation

Adding a Sheet