TableActionsCommand Constructor(Table,Int32,Int32,Int32,Boolean,ManipulationOptions,Actions)
In This Topic
Initializes a new instance of the
TableActionsCommand class.
Syntax
'Declaration
Public Function New( _
ByVal As Table, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Boolean, _
ByVal As ManipulationOptions, _
ByVal As RangeActionsCommand.Actions _
)
'Usage
Dim table As Table
Dim fromIndex As Integer
Dim toIndex As Integer
Dim count As Integer
Dim isRow As Boolean
Dim manipulationOptions As ManipulationOptions
Dim action As RangeActionsCommand.Actions
Dim instance As New TableActionsCommand(table, fromIndex, toIndex, count, isRow, manipulationOptions, action)
Parameters
- table
- The source table.
- fromIndex
- An integer value indicates the start index of source table range.
- toIndex
- An integer value indicates the end index of source table range.
- count
- An integer value indicates the count of source table range.
- isRow
- A boolean value indicates range action for row or column table.
- manipulationOptions
- A GrapeCity.Spreadsheet.ManipulationOptions value indicates the processing data options.
- action
- An GrapeCity.Spreadsheet.Actions value indicates the action again the specified cell range(s).
See Also