Spread Windows Forms 6.0 Product Documentation
Height Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Row Class : Height Property


Glossary Item Box

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;}

Property Value

Value of the height in pixels

Exceptions

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

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.

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

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.