Create a new SpreadCameraShape object.
            
            
            
Syntax
            Parameters
- sheetView
 
- The sheetView that contains the captured region
 - cellRange
 
- The captured region of the sheetView
 
            
						
			
            
            
            
Example
This example creates a shape from a cell range.
             
| C# |  Copy Code | 
|---|
FarPoint.Win.Spread.SheetView newsheet = new FarPoint.Win.Spread.SheetView();
newsheet.ColumnCount = 10;
newsheet.RowCount = 10;
newsheet.Cells[0, 0].BackColor = Color.Aqua;
newsheet.Cells[0, 0].Text = "test";
fpSpread1.Sheets[0] = newsheet;
FarPoint.Win.Spread.Model.CellRange range1 = new FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 1);
FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape test = new FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape(newsheet, range1);
fpSpread1.Sheets[0].AddShape(test, 2, 2);  | 
 
| Visual Basic |  Copy Code | 
|---|
Dim newsheet As New FarPoint.Win.Spread.SheetView()
newsheet.ColumnCount = 10
newsheet.RowCount = 10
newsheet.Cells(0, 0).BackColor = Color.Aqua
newsheet.Cells(0, 0).Text = "test"
FpSpread1.Sheets(0) = newsheet
Dim range1 As New FarPoint.Win.Spread.Model.CellRange(0, 0, 3, 1)
Dim test As New FarPoint.Win.Spread.DrawingSpace.SpreadCameraShape(newsheet, range1)
FpSpread1.Sheets(0).AddShape(test, 2, 2)  | 
 
 
            
            
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
 
            
            
See Also