| List for WinForms Task-Based Help > Hiding or Displaying a Column |
To hide a column on a C1List control, set the Visible property for the column to False either in the C1DisplayColumn Collection Editor or in code. To make a column visible, set the Visible property to True.


Add the following code to the Form_Load event:
To write code in Visual Basic
| Visual Basic |
Copy Code
|
|---|---|
Me.C1List1.Splits(0).DisplayColumns.Item("UserCode").Visible = False
|
|
To write code in C#
| C# |
Copy Code
|
|---|---|
this.c1List1.Splits[0].DisplayColumns["UserCode"].Visible = false; |
|
The final result will look like this, where the UserCode column is hidden.
