GetPreferredColumnWidth(Int32,Boolean,Boolean,Boolean,Boolean) Method
In This Topic
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 As Boolean, _
ByVal As Boolean, _
ByVal As Boolean, _
ByVal 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 ,
bool ,
bool ,
bool
)
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
See Also