Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Commands Namespace / AutoSumCommand Class / AutoSumCommand Constructor / AutoSumCommand Constructor(Worksheet,Int32,Int32,Int32,Int32)
A GrapeCity.Spreadsheet.Worksheet object indicates the worksheet.
Row index of starting position of selected range.
Column index of starting position of selected range.
Row index of ending position of selected range.
Column index of ending position of selected range.


In This Topic
    AutoSumCommand Constructor(Worksheet,Int32,Int32,Int32,Int32)
    In This Topic
    Initializes a new instance of the AutoSumCommand class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal worksheet As Worksheet, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal row2 As Integer, _
       ByVal column2 As Integer _
    )
    'Usage
     
    
    Dim worksheet As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim row2 As Integer
    Dim column2 As Integer
     
    Dim instance As New AutoSumCommand(worksheet, row, column, row2, column2)
    public AutoSumCommand( 
       Worksheet worksheet,
       int row,
       int column,
       int row2,
       int column2
    )

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