Initializes a new instance of the
ClipboardCopyCommand class.
Syntax
'Declaration
Public Function New( _
ByVal As Worksheet, _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal column2 As Integer, _
ByVal As ManipulationOptions _
)
'Usage
Dim worksheet As Worksheet
Dim row As Integer
Dim column As Integer
Dim row2 As Integer
Dim column2 As Integer
Dim manipulationOptions As ManipulationOptions
Dim instance As New ClipboardCopyCommand(worksheet, row, column, row2, column2, manipulationOptions)
public ClipboardCopyCommand(
Worksheet ,
int ,
int column,
int ,
int column2,
ManipulationOptions
)
Parameters
- worksheet
- A GrapeCity.Spreadsheet.Worksheet object indicates the worksheet.
- row
- Row index of starting position of selected range.
- column
- Column index of starting position of selected range.
- row2
- Row index of ending position of selected range.
- column2
- Column index of ending position of selected range.
- manipulationOptions
- Indicates which type of data to handle.
See Also