Creates a sheet (SheetView object).
            
Overload List
            
            
            
            
						
			
            
            
            
Example
This example creates a SheetView object and assigns it to the active sheet of the spreadsheet and changes the background color of the active cell.
             
| Visual Basic |  Copy Code | 
|---|
DimsvAsFarPoint.Web.Spread.SheetView
sv=FpSpread1.ActiveSheetView
sv.ActiveColumn=1
sv.ActiveRow=2
sv.Cells(sv.ActiveRow,sv.ActiveColumn).BackColor=Color.Yellow  | 
 
| C# |  Copy Code | 
|---|
FarPoint.Web.Spread.SheetViewsv=FpSpread1.ActiveSheetView;
sv.ActiveColumn=1;
sv.ActiveRow=2;
sv.Cells[sv.ActiveRow,sv.ActiveColumn].BackColor=Color.Yellow;  | 
 
 
            
            
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
 
            
            
See Also