| InputPanel for WinForms Task-Based Help > Arranging C1InputPanel's Input Components > Arranging the Input Components into Groups |
You can arrange the input components in several arrangements. To organize input components into groups, complete one of the following:
Arranging Input Components into Groups Using the Designer
To arrange input components into groups, complete these steps:
Note: If you have an InputGroupHeader on your form, do not select it while completing Step 1; The Break property will not be available if you do so.

To arrange input components into groups, complete these steps:
To write code in Visual Basic
| Visual Basic |
Copy Code
|
|---|---|
Imports C1.Win.C1InputPanel |
|
To write code in C#
| C# |
Copy Code
|
|---|---|
using C1.Win.C1InputPanel; |
|
To write code in Visual Basic
| Visual Basic |
Copy Code
|
|---|---|
Dim NewPanel As New C1InputPanel Controls.Add(NewPanel) NewPanel.Height = 300 NewPanel.Width = 300 |
|
To write code in C#
| C# |
Copy Code
|
|---|---|
C1InputPanel NewPanel = new C1InputPanel(); Controls.Add(NewPanel); NewPanel.Height = 300; NewPanel.Width = 300; |
|
To write code in Visual Basic
| Visual Basic |
Copy Code
|
|---|---|
Dim NewComboBox As New InputButton NewPanel.Items.Add(NewButton) NewButton.Text = "Button" NewButton.Break = BreakType.Group Dim New CheckBox As New InputCheckBox NewPanel.Items.Add(New CheckBox ) New CheckBox.Break = BreakType.Group Dim NewComboBox As New InputComboBox NewPanel.Items.Add(NewComboBox) NewComboBox.Width = 150 NewComboBox.Break = BreakType.Group |
|
To write code in C#
| C# |
Copy Code
|
|---|---|
InputButton NewComboBox = new InputButton(); NewPanel.Items.Add(NewComboBox); NewComboBox.Text = "Button"; NewComboBox.Break = BreakType.Group; InputCheckBox New CheckBox New CheckBox = new InputCheckBox(); NewPanel.Items.Add(New CheckBox ); New CheckBox.Break = BreakType.Group; InputComboBox NewComboBox = new InputComboBox(); NewPanel.Items.Add(NewComboBox); NewComboBox.Width = 150; NewComboBox.Break = BreakType.Group; |
|