Spread Windows Forms 12.0 Product Documentation
GetPreferredColumnWidth(Int32,Boolean) Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class > GetPreferredColumnWidth Method : GetPreferredColumnWidth(Int32,Boolean) Method
Column index
Whether to ignore column header cells
Gets the width of the widest cell (based on text content) in the specified column on this sheet.
Syntax
'Declaration
 
Public Overloads Function GetPreferredColumnWidth( _
   ByVal column As Integer, _
   ByVal ignoreHeaders As Boolean _
) As Single
'Usage
 
Dim instance As SheetView
Dim column As Integer
Dim ignoreHeaders As Boolean
Dim value As Single
 
value = instance.GetPreferredColumnWidth(column, ignoreHeaders)
public float GetPreferredColumnWidth( 
   int column,
   bool ignoreHeaders
)

Parameters

column
Column index
ignoreHeaders
Whether to ignore column header cells

Return Value

Single-precision, floating-point number of pixels of the width of the cell with the widest text in the row
Remarks
Be sure to read the remarks in the Overload List for this method.
Example
float size;
size = fpSpread1.ActiveSheet.GetPreferredColumnWidth(0, true);
listBox1.Items.Add(size.ToString());
Dim f As Integer
i = FpSpread1.ActiveSheet.GetPreferredColumnWidth(0, True)
ListBox1.Items.Add(i.ToString())
See Also

Reference

SheetView Class
SheetView Members
Overload List