Documentation > CMS Template API Library > Input > StartControlPanel(String)
StartControlPanel
Creates an control panel. It is used to group a set of controls. You must close the control panel with an EndControlPanel.
public System.Void StartControlPanel(String)
Parameters
Name | Description | Type |
---|---|---|
label | The label. | System.String |
Code Example
C#
Sample:
Input.StartControlPanel("Content Group"); Input.ShowTextBox("Option One", "option_one", "", 50); Input.ShowTextBox("Option Two", "option_two", "", 50); Input.ShowTextBox("Option Three", "option_three", "", 50); Input.EndControlPanel();