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


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class > GetPreferredColumnWidth Method : GetPreferredColumnWidth(Int32) Method
Column index
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 _
) As Single
'Usage
 
Dim instance As SheetView
Dim column As Integer
Dim value As Single
 
value = instance.GetPreferredColumnWidth(column)
public float GetPreferredColumnWidth( 
   int column
)

Parameters

column
Column index

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
This example illustrates the use of this member by returning the preferred width for the specified column.
float size;
size = fpSpread1.ActiveSheet.GetPreferredColumnWidth(0);
listBox1.Items.Add(size.ToString());
Dim size As Single
size = FpSpread1.ActiveSheet.GetPreferredColumnWidth(0)
ListBox1.Items.Add(size.ToString())
See Also

Reference

SheetView Class
SheetView Members
Overload List