Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / SheetSelectionModelEventArgs Class / SheetSelectionModelEventArgs Constructor
Row index of the start of the selection
Column index of the start of the selection
Number of rows in the selection
Number of columns in the selection


In This Topic
    SheetSelectionModelEventArgs Constructor
    In This Topic
    Creates a new Changed event arguments object for the selection model for the sheet.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer _
    )
    'Usage
     
    
    Dim row As Integer
    Dim column As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
     
    Dim instance As New SheetSelectionModelEventArgs(row, column, rowCount, columnCount)
    public SheetSelectionModelEventArgs( 
       int row,
       int column,
       int rowCount,
       int columnCount
    )

    Parameters

    row
    Row index of the start of the selection
    column
    Column index of the start of the selection
    rowCount
    Number of rows in the selection
    columnCount
    Number of columns in the selection
    See Also