Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI.UndoRedo Namespace / RowResizeUndoAction Class / RowResizeUndoAction Constructor
The sheet.
The resize rows.
The resize size.
Whether the row being resized is in the column header area.


In This Topic
    RowResizeUndoAction Constructor
    In This Topic
    Creates a new undo action for row resizing.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal sheetView As Worksheet, _
       ByVal rows() As RowResizeExtent, _
       ByVal size As Double, _
       ByVal columnHeader As Boolean _
    )
    'Usage
     
    Dim sheetView As Worksheet
    Dim rows() As RowResizeExtent
    Dim size As Double
    Dim columnHeader As Boolean
     
    Dim instance As New RowResizeUndoAction(sheetView, rows, size, columnHeader)
    public RowResizeUndoAction( 
       Worksheet sheetView,
       RowResizeExtent[] rows,
       double size,
       bool columnHeader
    )

    Parameters

    sheetView
    The sheet.
    rows
    The resize rows.
    size
    The resize size.
    columnHeader
    Whether the row being resized is in the column header area.
    See Also