Spread Silverlight Documentation
RowAutoFitExtent Constructor
Example 


GrapeCity.Windows.SpreadSheet.UI.UndoRedo Namespace > RowAutoFitExtent Class : RowAutoFitExtent Constructor
The row.
Creates a new instance of the RowAutoFitExtent class.
Syntax
'Declaration
 
Public Function New( _
   ByVal row As System.Integer _
)
'Usage
 
Dim row As System.Integer
 
Dim instance As New RowAutoFitExtent(row)
public RowAutoFitExtent( 
   System.int row
)

Parameters

row
The row.
Example
This example uses automatic fit.
//Add data
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.Windows.SpreadSheet.UI.UndoRedo.RowAutoFitExtent[] rows;
rows =  new GrapeCity.Windows.SpreadSheet.UI.UndoRedo.RowAutoFitExtent[] {new GrapeCity.Windows.SpreadSheet.UI.UndoRedo.RowAutoFitExtent(2)};
var action = new GrapeCity.Windows.SpreadSheet.UI.UndoRedo.RowAutoFitUndoAction(GcSpreadSheet1.Sheets[0], rows, 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.Windows.SpreadSheet.UI.UndoRedo.RowAutoFitExtent(2)}
Dim action As New GrapeCity.Windows.SpreadSheet.UI.UndoRedo.RowAutoFitUndoAction(GcSpreadSheet1.Sheets(0), rows, False)
GcSpreadSheet1.DoCommand(action)
See Also

Reference

RowAutoFitExtent Class
RowAutoFitExtent Members