GrapeCity.Xaml.SpreadSheet.UI
RowResizeExtent Constructor
Example 


First row of the contiguous selection.
Last row of the contiguous selection.
Creates a new RowResizeExtent object.
Syntax
'Declaration
 
Public Function New( _
   ByVal firstRow As Integer, _
   ByVal lastRow As Integer _
)
'Usage
 
Dim firstRow As Integer
Dim lastRow As Integer
 
Dim instance As New RowResizeExtent(firstRow, lastRow)
public RowResizeExtent( 
   int firstRow,
   int lastRow
)

Parameters

firstRow
First row of the contiguous selection.
lastRow
Last row of the contiguous selection.
Example
This example resizes rows.
for (var col = 1; col < 6; col++)
{
    for (var row = 2; row < 11; row++)
    {
        GcSpreadSheet1.Sheets[0].SetValue(row, col, row + col);
    }
}

GcSpreadSheet1.CanUserUndo = true;
GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.RowResizeExtent[] rows;
rows = new GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.RowResizeExtent[] { new GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.RowResizeExtent(2, 4) };
var action = new GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.RowResizeUndoAction(GcSpreadSheet1.Sheets[0], rows, 50, false);
GcSpreadSheet1.DoCommand(action);
'Add data
For col As Integer = 1 To 6
    For row As Integer = 2 To 11
        GcSpreadSheet1.Sheets(0).SetValue(row, col, row + col)
    Next
Next

GcSpreadSheet1.CanUserUndo = True
Dim rows() = {New GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.RowResizeExtent(2, 4)}
Dim action As New GrapeCity.Xaml.SpreadSheet.UI.UndoRedo.RowResizeUndoAction(GcSpreadSheet1.Sheets(0), rows, 50, False)
GcSpreadSheet1.DoCommand(action)
Requirements

Target Platforms: Windows Server 2012, Windows RT

See Also

Reference

RowResizeExtent Class
RowResizeExtent Members

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options