Version

Children Property (ContentPane)

Returns the collection of child controls that will be displayed within the ContentPane.

Syntax
'Declaration
 
Public ReadOnly Property Children As ControlCollection
public ControlCollection Children {get;}
Remarks

The Children collection contains all of the child controls that will be displayed when a particular tab is selected. There are currently two ways in which child controls can be added to the Children collection, at Design-Time using Template Editor and at Run-Time from code.

To add controls at run-time: Add the UltraWebTab control to an aspx page. Add code similar to the following to create and add your control to the ContentPane of a Tab object.

TextBox txtInput = new TextBox();

txtInput.Width = Unit.Pixel(190);

UltraWebTab1.Tabs.GetTab(0).ContentPane.Children.Add(txtInput);

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also