Class sap.ui.layout.SplitPaneModule: sap/ui/layout/SplitPane
SplitPane is a container of a single control. Could be used as an aggregation of a PaneContainer.
Since: 1.38.
sClassName
and enriches it with the information contained in oClassInfo
. Accepts an object literal mSettings
that defines initial property values, aggregated and associated objects as well as event handlers. See sap.ui.base.ManagedObject for a general description of the syntax of the settings object.
The supported settings are:
- Properties
- demandPane : boolean (default: true)
- requiredParentWidth : int (default: 800)
- Aggregations
- content : sap.ui.core.Control (default)
In addition, all settings applicable to the base type sap.ui.core.Element can be used as well.
{string} | sId? | ID for the new control, generated automatically if no ID is given |
{object} | mSettings? | Initial settings for the new control |
sClassName
and enriches it with the information contained in oClassInfo
. oClassInfo
might contain the same kind of information as described in sap.ui.core.Element.extend.
{string} | sClassName | Name of the class being created |
{object} | oClassInfo? | Object literal with information about the class |
{function} | FNMetaImpl? | Constructor function for the metadata object; if not given, it defaults to sap.ui.core.ElementMetadata |
{function} | Created class / constructor function |
{sap.ui.base.Metadata} | Metadata object describing this class |
content
. {sap.ui.layout.SplitPane} | Reference to this in order to allow method chaining |
content
. Content of the SplitPane
{sap.ui.core.Control} |
demandPane
. Determines whether the pane will be moved to the pagination
Default value is true
.
{boolean} | Value of property demandPane |
requiredParentWidth
. Determines the minimum width of the ResponsiveSplitter(in pixels). When it is reached the pane will be hidden from the screen.
Default value is 800
.
{int} | Value of property requiredParentWidth |
content
. {sap.ui.core.Control} | oContent | The content to set |
{sap.ui.layout.SplitPane} | Reference to this in order to allow method chaining |
demandPane
. Determines whether the pane will be moved to the pagination
When called with a value of null
or undefined
, the default value of the property will be restored.
Default value is true
.
{boolean} | bDemandPane | New value for property demandPane |
{sap.ui.layout.SplitPane} | Reference to this in order to allow method chaining |
requiredParentWidth
. Determines the minimum width of the ResponsiveSplitter(in pixels). When it is reached the pane will be hidden from the screen.
When called with a value of null
or undefined
, the default value of the property will be restored.
Default value is 800
.
{int} | iRequiredParentWidth | New value for property requiredParentWidth |
{sap.ui.layout.SplitPane} | Reference to this in order to allow method chaining |