IContainer

A container is a type of component that is capable of having child components.

interface IContainer : IComponent {}

Members

Functions

add
void add(IComponent child)

Adds a child component to the component.

Inherited Members

From IComponent

visible
void visible(bool visible)

Sets the visibility of the component.

visible
bool visible()

Gets the visibility of the component.

getInternal
IComponent getInternal()

Returns the component owned by the backend.

Meta