Gets the width of the widest cell (based on text contents) in the specified column on this sheet.
Syntax
Visual Basic (Declaration) | |
---|
Public Overloads Function GetPreferredColumnWidth( _
ByVal column As Integer _
) As Single |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim column As Integer
Dim value As Single
value = instance.GetPreferredColumnWidth(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
Example
This example illustrates the use of this member by returning the preferred width for the specified column.
C# | Copy Code |
---|
float size;
size = fpSpread1.ActiveSheet.GetPreferredColumnWidth(0);
listBox1.Items.Add(size.ToString()); |
Visual Basic | Copy Code |
---|
Dim size As Single
size = FpSpread1.ActiveSheet.GetPreferredColumnWidth(0)
ListBox1.Items.Add(size.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