Container.setSettingsToControls

Syntax

setSettingsToControls ();

Parameters

settings. JSON object with component settings.

Description

The setSettingsToControls method sets general settings for the child items of container.

Example

To execute the example it is required to have the GridPanel component named container (see Example of Creating the GridPanel Component), that houses components that inherit from the Control class. Set up some properties of these components:

container.setSettingsToControls({

      IsRTL: true,

      Width: 100,

      ToolTip: "Container element"

  });

After executing the example, displaying from left to right with the width of 100 pixels and the tooltip with the Container Item text are configured for components contained in the container.

See also:

Container