| Visual Basic (Declaration) | |
|---|---|
Public Enum ColumnAutoSizeMode Inherits Enum | |
| C# | |
|---|---|
public enum ColumnAutoSizeMode : Enum | |
| Member | Description |
|---|---|
| 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. |
