Gets the height in pixels of the tallest cell (based on text content) in the specified row on this sheet.
Syntax
Visual Basic (Declaration) | |
---|
Public Overloads Function GetPreferredRowHeight( _
ByVal row As Integer _
) As Single |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim row As Integer
Dim value As Single
value = instance.GetPreferredRowHeight(row) |
Parameters
- row
- Row index
Return Value
Single-precision, floating-point number of pixels of the width of the cell with the tallest text in the column
Remarks
Example
This example illustrates the use of the method by returning the preferred height for the specified row.
C# | Copy Code |
---|
float size;
size = fpSpread1.ActiveSheet.GetPreferredRowHeight(0);
listBox1.Items.Add(size.ToString()); |
Visual Basic | Copy Code |
---|
Dim size As Single
size = FpSpread1.ActiveSheet.GetPreferredRowHeight(0)
ListBox1.Items.Add(size.ToString()) |
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also