RowColumnActionsCommand Constructor(Boolean,Worksheet,Int32,Int32,Boolean)
In This Topic
Initializes a new instance of the
RowColumnActionsCommand class with the specified workbook.
Syntax
'Declaration
Public Function New( _
ByVal isColumn As Boolean, _
ByVal As Worksheet, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Boolean _
)
'Usage
Dim isColumn As Boolean
Dim worksheet As Worksheet
Dim startIndex As Integer
Dim endIndex As Integer
Dim isGroup As Boolean
Dim instance As New RowColumnActionsCommand(isColumn, worksheet, startIndex, endIndex, isGroup)
public RowColumnActionsCommand(
bool isColumn,
Worksheet ,
int ,
int ,
bool
)
Parameters
- isColumn
- A boolean value indicates whether the command process on rows or columns.
- worksheet
- The worksheet which this command attached to.
- startIndex
- An integer value indicates the start index.
- endIndex
- An integer value indicates the end index.
- isGroup
See Also