Gets the height in pixels of the tallest cell (based on text contents) in the specified row on this sheet.
Syntax
Visual Basic (Declaration) | |
---|
Public Overloads Function GetPreferredRowHeight( _
ByVal row As Integer, _
ByVal As Boolean _
) As Single |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim row As Integer
Dim ignoreHeaders As Boolean
Dim value As Single
value = instance.GetPreferredRowHeight(row, ignoreHeaders) |
Parameters
- row
- Row index
- ignoreHeaders
- Whether to ignore the row header cells
Return Value
Single-precision, floating-point number of pixels of the width of the cell with the tallest text in the column
Remarks
Example
C# | Copy Code |
---|
float size;
size = fpSpread1.ActiveSheet.GetPreferredRowHeight(0, true);
listBox1.Items.Add(size.ToString())
|
Visual Basic | Copy Code |
---|
Dim f As Integer
i = FpSpread1.ActiveSheet.GetPreferredRowHeight(0, True)
ListBox1.Items.Add(i.ToString())
|
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