Documentation > CMS Template API Library > Input > EndTabbedPanel()
EndTabbedPanel
See StartTabbedPanel(List{string}).
public System.Void EndTabbedPanel()
Parameters
| Name | Description | Type |
|---|---|---|
Code Example
C#
Sample:
Input.StartTabbedPanel("Option1", "Option2", "Option3");
Input.ShowTextBox("Option1", "option1");
Input.NextTabbedPanel();
Input.ShowTextBox("Option2", "option2");
Input.NextTabbedPanel();
Input.ShowTextBox("Option3", "option3");
Input.EndTabbedPanel();