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


Column index
Whether to ignore column header cells
Whether to ignore spans
Whether to exclude cells with wrapped contents
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 _
) As Single
'Usage
 
Dim instance As SheetView
Dim column As Integer
Dim ignoreHeaders As Boolean
Dim ignoreSpans As Boolean
Dim excludeWordWrap As Boolean
Dim value As Single
 
value = instance.GetPreferredColumnWidth(column, ignoreHeaders, ignoreSpans, excludeWordWrap)
public float GetPreferredColumnWidth( 
   int column,
   bool ignoreHeaders,
   bool ignoreSpans,
   bool excludeWordWrap
)

Parameters

column
Column index
ignoreHeaders
Whether to ignore column header cells
ignoreSpans
Whether to ignore spans
excludeWordWrap
Whether to exclude cells with wrapped contents

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 uses the GetPreferredColumnWidth method.
float size;
size = fpSpread1.ActiveSheet.GetPreferredColumnWidth(0, true, true, true);
listBox1.Items.Add(size.ToString());
Dim Size As Integer
Size = FpSpread1.ActiveSheet.GetPreferredColumnWidth(0, True, True, True)
ListBox1.Items.Add(Size.ToString())
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SheetView Class
SheetView Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.