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


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class > GetPreferredColumnWidth Method : GetPreferredColumnWidth(Int32,Boolean,Boolean,Boolean,Boolean) Method
Column index
Whether to ignore column header cells
Whether to ignore spans
Whether to exclude cells with wrapped contents
Whether to ignore measure cells in table can have special object likes table header filter button
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, _
   ByVal ignoreSpans As Boolean, _
   ByVal excludeWordWrap As Boolean, _
   ByVal ignoreTable As Boolean _
) As Single
'Usage
 
Dim instance As SheetView
Dim column As Integer
Dim ignoreHeaders As Boolean
Dim ignoreSpans As Boolean
Dim excludeWordWrap As Boolean
Dim ignoreTable As Boolean
Dim value As Single
 
value = instance.GetPreferredColumnWidth(column, ignoreHeaders, ignoreSpans, excludeWordWrap, ignoreTable)
public float GetPreferredColumnWidth( 
   int column,
   bool ignoreHeaders,
   bool ignoreSpans,
   bool excludeWordWrap,
   bool ignoreTable
)

Parameters

column
Column index
ignoreHeaders
Whether to ignore column header cells
ignoreSpans
Whether to ignore spans
excludeWordWrap
Whether to exclude cells with wrapped contents
ignoreTable
Whether to ignore measure cells in table can have special object likes table header filter button
Remarks
A cell has wrapped contents (text that wraps to multiple lines) when the renderer in the composite style for the cell implements IWordWrapSupport interface and its WordWrap property returns true.
Example
This example uses the GetPreferredColumnWidth method.
float size;
size = fpSpread1.ActiveSheet.GetPreferredColumnWidth(0, true, true, true, true);
listBox1.Items.Add(size.ToString());
Dim Size As Integer
Size = fpSpread1.ActiveSheet.GetPreferredColumnWidth(0, True, True, True, True)
ListBox1.Items.Add(Size.ToString())
See Also

Reference

SheetView Class
SheetView Members
Overload List