Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI.UndoRedo Namespace / DragDropExtent Class / DragDropExtent Constructor
The from row index.
The from column index.
The to row index.
The to column index.
The drag drop row count.
The drag drop column count.


In This Topic
    DragDropExtent Constructor
    In This Topic
    Creates a new instance of the DragDropExtent class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal fromRow As Integer, _
       ByVal fromColumn As Integer, _
       ByVal toRow As Integer, _
       ByVal toColumn As Integer, _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer _
    )
    'Usage
     
    Dim fromRow As Integer
    Dim fromColumn As Integer
    Dim toRow As Integer
    Dim toColumn As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
     
    Dim instance As New DragDropExtent(fromRow, fromColumn, toRow, toColumn, rowCount, columnCount)
    public DragDropExtent( 
       int fromRow,
       int fromColumn,
       int toRow,
       int toColumn,
       int rowCount,
       int columnCount
    )

    Parameters

    fromRow
    The from row index.
    fromColumn
    The from column index.
    toRow
    The to row index.
    toColumn
    The to column index.
    rowCount
    The drag drop row count.
    columnCount
    The drag drop column count.
    See Also