Infragistics2.Win.UltraWinListView.v8.1
ColumnAutoSizeMode Enumeration
See Also  
Infragistics.Win.UltraWinListView Namespace : ColumnAutoSizeMode Enumeration

Contains constants which describe how the UltraListView.MainColumn and the members of the UltraListView.SubItemColumns collection are auto-sized.

Syntax

Visual Basic (Declaration) 
Public Enum ColumnAutoSizeMode 
   Inherits Enum
C# 
public enum ColumnAutoSizeMode : Enum 

Members

MemberDescription
Default The actual value is determined at a higher level of the property resolution hierarchy.
None Auto-sizing is not permitted.
Header Only the header text is included when the width for the column is determined.
VisibleItems Only the values for items which are visible in the user interface are included when the width for the column is determined.
AllItems The values for all items displayed by the control, regardless of whether they are currently visible, are included when the width for the column is determined.
VisibleItemsAndHeader The values for items which are visible in the user interface and the header text is included when the width for the column is determined.
AllItemsAndHeader The values for all items displayed by the control, regardless of whether they are currently visible, and the header text, is included when the width for the column is determined.

See Also