Spread Windows Forms 10.0 Product Documentation
GetPreferredRowHeight(Int32,Boolean) Method
Example 


Row index
Whether to ignore the row header cells
Gets the height in pixels of the tallest cell (based on text content) in the specified row on this sheet.
Syntax
'Declaration
 
Public Overloads Function GetPreferredRowHeight( _
   ByVal row As Integer, _
   ByVal ignoreHeaders As Boolean _
) As Single
'Usage
 
Dim instance As SheetView
Dim row As Integer
Dim ignoreHeaders As Boolean
Dim value As Single
 
value = instance.GetPreferredRowHeight(row, ignoreHeaders)
public float GetPreferredRowHeight( 
   int row,
   bool 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
Be sure to read the remarks in the Overload List for this method.
Example
float size;
size = fpSpread1.ActiveSheet.GetPreferredRowHeight(0, true);
listBox1.Items.Add(size.ToString())
Dim f As Integer
i = FpSpread1.ActiveSheet.GetPreferredRowHeight(0, True)
ListBox1.Items.Add(i.ToString())
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SheetView Class
SheetView Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.