Spread Windows Forms 12.0 Product Documentation
GetPreferredRowHeight(Int32) Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class > GetPreferredRowHeight Method : GetPreferredRowHeight(Int32) Method
Row index
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 _
) As Single
'Usage
 
Dim instance As SheetView
Dim row As Integer
Dim value As Single
 
value = instance.GetPreferredRowHeight(row)
public float GetPreferredRowHeight( 
   int 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
Be sure to read the remarks in the Overload List for this method.
Example
This example illustrates the use of the method by returning the preferred height for the specified row.
float size;
size = fpSpread1.ActiveSheet.GetPreferredRowHeight(0);
listBox1.Items.Add(size.ToString());
Dim size As Single
size = FpSpread1.ActiveSheet.GetPreferredRowHeight(0)
ListBox1.Items.Add(size.ToString())
See Also

Reference

SheetView Class
SheetView Members
Overload List