Spread Windows Forms 12.0 Product Documentation
SheetView Constructor()
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class > SheetView Constructor : SheetView Constructor()
Creates a new sheet (SheetView object).
Syntax
'Declaration
 
Public Function New()
'Usage
 
Dim instance As New SheetView()
public SheetView()
Example
This example creates a sheet and assigns it to the spread.
private void button1Click(object sender, System.EventArgs e)
{
FarPoint.Win.Spread.SheetView sv = new FarPoint.Win.Spread.SheetView();
     fpSpread1.Sheets.Add(sv);
}
Private Sub Button1Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim sv As New FarPoint.Win.Spread.SheetView
     FpSpread1.Sheets.Add(sv)
End Sub
See Also

Reference

SheetView Class
SheetView Members
Overload List

User-Task Documentation

Adding a Sheet