Exception | Description |
---|---|
System.ArgumentOutOfRangeException | Specified height is out of range; must be between -1 and 9,999,999 pixels |
This is equivalent to the SheetView.SetRowHeight method. For more information on setting the size of the row, refer to Setting the Row Height or Column Width.
Row heights can be based on the data in the cells using the GetPreferredHeight method or SheetView.GetPreferredRowHeight method. For more information, see Resizing the Row and Column to Fit the Data.
You can allow users to resize row by setting the Resizable property. If the user is allowed to resize rows, when the user resizes a row, the FpSpread.RowHeightChanged and SheetView.RowChanged events occur.
FarPoint.Win.Spread.Row r; r = fpSpread1.ActiveSheet.Rows[0]; r.Height = 70;
Dim r As FarPoint.Win.Spread.Row r = FpSpread1.ActiveSheet.Rows(0) r.Height = 70