Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI.UndoRedo Namespace / CellEditExtent Class / CellEditExtent Constructor
The edit row index.
The edit column index.
The edit cell's new value to apply.


In This Topic
    CellEditExtent Constructor
    In This Topic
    Creates a new instance of the CellEditExtent class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal newValue As String _
    )
    'Usage
     
    Dim row As Integer
    Dim column As Integer
    Dim newValue As String
     
    Dim instance As New CellEditExtent(row, column, newValue)
    public CellEditExtent( 
       int row,
       int column,
       string newValue
    )

    Parameters

    row
    The edit row index.
    column
    The edit column index.
    newValue
    The edit cell's new value to apply.
    See Also