Class sap.m.IconTabSeparatorModule: sap/m/IconTabSeparator

extends Element
implements IconTab

Represents an Icon used to separate 2 tab filters.

Constructor Summary
new sap.m.IconTabSeparator(sId?, mSettings?)Constructor for a new IconTabSeparator.
Method Summary
sap.m.IconTabSeparator.extend(sClassName, oClassInfo?, FNMetaImpl?)Creates a new subclass of class sap.m.IconTabSeparator with name sClassName and enriches it with the information contained in oClassInfo.
sap.m.IconTabSeparator.getMetadata()Returns a metadata object for class sap.m.IconTabSeparator.
getIcon()Gets current value of property icon.
getIconDensityAware()Gets current value of property iconDensityAware.
setIcon(sIcon)Sets a new value for property icon.
setIconDensityAware(bIconDensityAware)Sets a new value for property iconDensityAware.
Constructor Detail
new sap.m.IconTabSeparator(sId?, mSettings?)
Constructor for a new IconTabSeparator.

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:

In addition, all settings applicable to the base type sap.ui.core.Element can be used as well.

Parameters:
{string}sId? ID for the new control, generated automatically if no ID is given
{object}mSettings? Initial settings for the new control
Method Detail
sap.m.IconTabSeparator.extend(sClassName, oClassInfo?, FNMetaImpl?): function
Creates a new subclass of class sap.m.IconTabSeparator with name 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.

Parameters:
{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
Returns:
{function} Created class / constructor function
sap.m.IconTabSeparator.getMetadata(): sap.ui.base.Metadata
Returns a metadata object for class sap.m.IconTabSeparator.
Returns:
{sap.ui.base.Metadata} Metadata object describing this class
getIcon(): sap.ui.core.URI
Gets current value of property icon.

The icon to display for this separator. If no icon is given, a separator line is used instead.

Default value is .

Returns:
{sap.ui.core.URI} Value of property icon
getIconDensityAware(): boolean
Gets current value of property iconDensityAware.

If set to true, it sends one or more requests, trying to get the density perfect version of the image if this version of the image doesn't exist on the server. Default value is set to true.

If bandwidth is key for the application, set this value to false.

Default value is true.

Returns:
{boolean} Value of property iconDensityAware
setIcon(sIcon): sap.m.IconTabSeparator
Sets a new value for property icon.

The icon to display for this separator. If no icon is given, a separator line is used instead.

When called with a value of null or undefined, the default value of the property will be restored.

Default value is .

Parameters:
{sap.ui.core.URI}sIcon New value for property icon
Returns:
{sap.m.IconTabSeparator} Reference to this in order to allow method chaining
setIconDensityAware(bIconDensityAware): sap.m.IconTabSeparator
Sets a new value for property iconDensityAware.

If set to true, it sends one or more requests, trying to get the density perfect version of the image if this version of the image doesn't exist on the server. Default value is set to true.

If bandwidth is key for the application, set this value to false.

When called with a value of null or undefined, the default value of the property will be restored.

Default value is true.

Parameters:
{boolean}bIconDensityAware New value for property iconDensityAware
Returns:
{sap.m.IconTabSeparator} Reference to this in order to allow method chaining