FarPoint.Win.Spread
Height Property
See Also  Example
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Row Class : Height Property


Gets or sets the height of this row in pixels.

Syntax

Visual Basic (Declaration) 
Public Property Height As Single
Visual Basic (Usage)Copy Code
Dim instance As Row
Dim value As Single
 
instance.Height = value
 
value = instance.Height
C# 
public float Height {get; set;}

Return Value

Value of the height in pixels

Exceptions

ExceptionDescription
ArgumentOutOfRangeException Specified height is out of range; must be between -1 and 9,999,999 pixels

Example

This example specifies the height for the cells in the row.
C#Copy Code
FarPoint.Win.Spread.Row r;
r = fpSpread1.ActiveSheet.Rows[0];
r.Height = 70;
Visual BasicCopy Code
Dim r As FarPoint.Win.Spread.Row
r = FpSpread1.ActiveSheet.Rows(0)
r.Height = 70

Remarks

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.

See Also