GrapeCity.Xaml.SpreadSheet.Data
Worksheet Constructor(Int32,Int32)
Example 


GrapeCity.Xaml.SpreadSheet.Data Namespace > Worksheet Class > Worksheet Constructor : Worksheet Constructor(Int32,Int32)
The row count.
The column count.
Creates a new sheet with the specified row count and column count.
Syntax
'Declaration
 
Public Function New( _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
)
'Usage
 
Dim rowCount As Integer
Dim columnCount As Integer
 
Dim instance As New Worksheet(rowCount, columnCount)
public Worksheet( 
   int rowCount,
   int columnCount
)

Parameters

rowCount
The row count.
columnCount
The column count.
Example
This example adds a sheet.
//Add some sheets
gcSpreadSheet1.Sheets.Add(new GrapeCity.Xaml.SpreadSheet.Data.Worksheet());
gcSpreadSheet1.Sheets.Add(new GrapeCity.Xaml.SpreadSheet.Data.Worksheet("customSheet"));
gcSpreadSheet1.Sheets.Add(new GrapeCity.Xaml.SpreadSheet.Data.Worksheet(new GrapeCity.Xaml.SpreadSheet.Data.StyleInfoCollection()));
gcSpreadSheet1.Sheets.Add(new GrapeCity.Xaml.SpreadSheet.Data.Worksheet(10, 10));
gcSpreadSheet1.Sheets.Add(new GrapeCity.Xaml.SpreadSheet.Data.Worksheet(10, 10, 2, 2));
'Add some sheets
GcSpreadSheet1.Sheets.Add(New GrapeCity.Xaml.SpreadSheet.Data.Worksheet())
GcSpreadSheet1.Sheets.Add(New GrapeCity.Xaml.SpreadSheet.Data.Worksheet("customSheet"))
GcSpreadSheet1.Sheets.Add(New GrapeCity.Xaml.SpreadSheet.Data.Worksheet(New GrapeCity.Xaml.SpreadSheet.Data.StyleInfoCollection()))
GcSpreadSheet1.Sheets.Add(New GrapeCity.Xaml.SpreadSheet.Data.Worksheet(10, 10))
GcSpreadSheet1.Sheets.Add(New GrapeCity.Xaml.SpreadSheet.Data.Worksheet(10, 10, 2, 2))
See Also

Reference

Worksheet Class
Worksheet Members
Overload List