Spread Windows Forms 12.0 Product Documentation
SpreadCameraShape Constructor(SheetView,CellRange)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.DrawingSpace Namespace > SpreadCameraShape Class > SpreadCameraShape Constructor : SpreadCameraShape Constructor(SheetView,CellRange)
The sheetView that contains the captured region
The captured region of the sheetView
Create a new SpreadCameraShape object.
Syntax
'Declaration
 
Public Function New( _
   ByVal sheetView As SheetView, _
   ByVal cellRange As CellRange _
)
'Usage
 
Dim sheetView As SheetView
Dim cellRange As CellRange
 
Dim instance As New SpreadCameraShape(sheetView, cellRange)
public SpreadCameraShape( 
   SheetView sheetView,
   CellRange cellRange
)

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.
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);
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)
See Also

Reference

SpreadCameraShape Class
SpreadCameraShape Members
Overload List