Class sap.ui.vk.OverlayAreaModule: sap/ui/vk/OverlayArea

extends Element

Aggregation element for the Overlay Control

Experimental API:Since 1.32.0 This class is experimental and might be modified or removed in future versions.

Constructor Summary
new sap.ui.vk.OverlayArea(sId?, mSettings?)Constructor for a new OverlayArea.
Event Summary
click(oControlEvent)The event is raised when there is a click action on an OverlayArea.
contextMenu(oControlEvent)The event is raised when there is a right click or a tap and hold action on an OverlayArea.
edgeClick(oControlEvent)This event is raised when the edge of an OverlayArea is clicked.
edgeContextMenu(oControlEvent)This event is raised when the edge of an OverlayArea is right clicked.
handleClick(oControlEvent)This event is raised when the design handle of a changable OverlayArea is clicked.
handleContextMenu(oControlEvent)This event is raised when the design handle of a changable OverlayArea is right clicked.
handleMoved(oControlEvent)This event is raised when the design handle of a changable OverlayArea is moved.
Method Summary
sap.ui.vk.OverlayArea.extend(sClassName, oClassInfo?, FNMetaImpl?)Creates a new subclass of class sap.ui.vk.OverlayArea with name sClassName and enriches it with the information contained in oClassInfo.
sap.ui.vk.OverlayArea.getMetadata()Returns a metadata object for class sap.ui.vk.OverlayArea.
attachClick(oData?, fnFunction, oListener?)Attaches event handler fnFunction to the click event of this sap.ui.vk.OverlayArea.
attachContextMenu(oData?, fnFunction, oListener?)Attaches event handler fnFunction to the contextMenu event of this sap.ui.vk.OverlayArea.
attachEdgeClick(oData?, fnFunction, oListener?)Attaches event handler fnFunction to the edgeClick event of this sap.ui.vk.OverlayArea.
attachEdgeContextMenu(oData?, fnFunction, oListener?)Attaches event handler fnFunction to the edgeContextMenu event of this sap.ui.vk.OverlayArea.
attachHandleClick(oData?, fnFunction, oListener?)Attaches event handler fnFunction to the handleClick event of this sap.ui.vk.OverlayArea.
attachHandleContextMenu(oData?, fnFunction, oListener?)Attaches event handler fnFunction to the handleContextMenu event of this sap.ui.vk.OverlayArea.
attachHandleMoved(oData?, fnFunction, oListener?)Attaches event handler fnFunction to the handleMoved event of this sap.ui.vk.OverlayArea.
detachClick(fnFunction, oListener)Detaches event handler fnFunction from the click event of this sap.ui.vk.OverlayArea.
detachContextMenu(fnFunction, oListener)Detaches event handler fnFunction from the contextMenu event of this sap.ui.vk.OverlayArea.
detachEdgeClick(fnFunction, oListener)Detaches event handler fnFunction from the edgeClick event of this sap.ui.vk.OverlayArea.
detachEdgeContextMenu(fnFunction, oListener)Detaches event handler fnFunction from the edgeContextMenu event of this sap.ui.vk.OverlayArea.
detachHandleClick(fnFunction, oListener)Detaches event handler fnFunction from the handleClick event of this sap.ui.vk.OverlayArea.
detachHandleContextMenu(fnFunction, oListener)Detaches event handler fnFunction from the handleContextMenu event of this sap.ui.vk.OverlayArea.
detachHandleMoved(fnFunction, oListener)Detaches event handler fnFunction from the handleMoved event of this sap.ui.vk.OverlayArea.
fireClick(mArguments?)Fires event click to attached listeners.
fireContextMenu(mArguments?)Fires event contextMenu to attached listeners.
fireEdgeClick(mArguments?)Fires event edgeClick to attached listeners.
fireEdgeContextMenu(mArguments?)Fires event edgeContextMenu to attached listeners.
fireHandleClick(mArguments?)Fires event handleClick to attached listeners.
fireHandleContextMenu(mArguments?)Fires event handleContextMenu to attached listeners.
fireHandleMoved(mArguments?)Fires event handleMoved to attached listeners.
getChangeable()Gets current value of property changeable.
getColor()Gets current value of property color.
getColorBorder()Gets current value of property colorBorder.
getColorNonSelect()Gets current value of property colorNonSelect.
getColorSelect()Gets current value of property colorSelect.
getDeltaColorHot()Gets current value of property deltaColorHot.
getKey()Gets current value of property key.
getPosition()Gets current value of property position.
getSelect()Gets current value of property select.
openContextMenu(oMenu)open the context menu
setChangeable(bChangeable)Sets a new value for property changeable.
setColor(sColor)Sets a new value for property color.
setColorBorder(sColorBorder)Sets a new value for property colorBorder.
setColorNonSelect(sColorNonSelect)Sets a new value for property colorNonSelect.
setColorSelect(sColorSelect)Sets a new value for property colorSelect.
setDeltaColorHot(sDeltaColorHot)Sets a new value for property deltaColorHot.
setKey(sKey)Sets a new value for property key.
setPosition(sPosition)Sets a new value for property position.
setSelect(bSelect)Sets a new value for property select.
Constructor Detail
new sap.ui.vk.OverlayArea(sId?, mSettings?)
Constructor for a new OverlayArea.

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
  • Events
    • click : fnListenerFunction or [fnListenerFunction, oListenerObject] or [oData, fnListenerFunction, oListenerObject]
    • contextMenu : fnListenerFunction or [fnListenerFunction, oListenerObject] or [oData, fnListenerFunction, oListenerObject]
    • edgeClick : fnListenerFunction or [fnListenerFunction, oListenerObject] or [oData, fnListenerFunction, oListenerObject]
    • edgeContextMenu : fnListenerFunction or [fnListenerFunction, oListenerObject] or [oData, fnListenerFunction, oListenerObject]
    • handleMoved : fnListenerFunction or [fnListenerFunction, oListenerObject] or [oData, fnListenerFunction, oListenerObject]
    • handleContextMenu : fnListenerFunction or [fnListenerFunction, oListenerObject] or [oData, fnListenerFunction, oListenerObject]
    • handleClick : fnListenerFunction or [fnListenerFunction, oListenerObject] or [oData, fnListenerFunction, oListenerObject]

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
Event Detail
click(oControlEvent)
The event is raised when there is a click action on an OverlayArea.
Parameters:
{sap.ui.base.Event}oControlEvent
{sap.ui.base.EventProvider}oControlEvent.getSource
{object}oControlEvent.getParameters
contextMenu(oControlEvent)
The event is raised when there is a right click or a tap and hold action on an OverlayArea.
Parameters:
{sap.ui.base.Event}oControlEvent
{sap.ui.base.EventProvider}oControlEvent.getSource
{object}oControlEvent.getParameters
{sap.ui.unified.Menu}oControlEvent.getParameters.menu Menu to open
edgeClick(oControlEvent)
This event is raised when the edge of an OverlayArea is clicked.
Parameters:
{sap.ui.base.Event}oControlEvent
{sap.ui.base.EventProvider}oControlEvent.getSource
{object}oControlEvent.getParameters
{int}oControlEvent.getParameters.index Index of the clicked edge. The numbering is zero based and the first edge with index 0 starts at the first position in the position array and end at the second.
edgeContextMenu(oControlEvent)
This event is raised when the edge of an OverlayArea is right clicked.
Parameters:
{sap.ui.base.Event}oControlEvent
{sap.ui.base.EventProvider}oControlEvent.getSource
{object}oControlEvent.getParameters
{int}oControlEvent.getParameters.index Index of the clicked edge. The numbering is zero based and the first edge with index 0 starts at the first position in the position array and end at the second.
{sap.ui.unified.Menu}oControlEvent.getParameters.menu Menu to open
handleClick(oControlEvent)
This event is raised when the design handle of a changable OverlayArea is clicked.
Parameters:
{sap.ui.base.Event}oControlEvent
{sap.ui.base.EventProvider}oControlEvent.getSource
{object}oControlEvent.getParameters
handleContextMenu(oControlEvent)
This event is raised when the design handle of a changable OverlayArea is right clicked.
Parameters:
{sap.ui.base.Event}oControlEvent
{sap.ui.base.EventProvider}oControlEvent.getSource
{object}oControlEvent.getParameters
{int}oControlEvent.getParameters.index Index of the clicked handle. The numbering is zero based.
{sap.ui.unified.Menu}oControlEvent.getParameters.menu Menu to open
handleMoved(oControlEvent)
This event is raised when the design handle of a changable OverlayArea is moved.
Parameters:
{sap.ui.base.Event}oControlEvent
{sap.ui.base.EventProvider}oControlEvent.getSource
{object}oControlEvent.getParameters
Method Detail
sap.ui.vk.OverlayArea.extend(sClassName, oClassInfo?, FNMetaImpl?): function
Creates a new subclass of class sap.ui.vk.OverlayArea 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.ui.vk.OverlayArea.getMetadata(): sap.ui.base.Metadata
Returns a metadata object for class sap.ui.vk.OverlayArea.
Returns:
{sap.ui.base.Metadata} Metadata object describing this class
attachClick(oData?, fnFunction, oListener?): sap.ui.vk.OverlayArea
Attaches event handler fnFunction to the click event of this sap.ui.vk.OverlayArea.

When called, the context of the event handler (its this) will be bound to oListener if specified, otherwise it will be bound to this sap.ui.vk.OverlayArea itself.

The event is raised when there is a click action on an OverlayArea.

Parameters:
{object}oData? An application-specific payload object that will be passed to the event handler along with the event object when firing the event
{function}fnFunction The function to be called when the event occurs
{object}oListener? Context object to call the event handler with. Defaults to this sap.ui.vk.OverlayArea itself
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
attachContextMenu(oData?, fnFunction, oListener?): sap.ui.vk.OverlayArea
Attaches event handler fnFunction to the contextMenu event of this sap.ui.vk.OverlayArea.

When called, the context of the event handler (its this) will be bound to oListener if specified, otherwise it will be bound to this sap.ui.vk.OverlayArea itself.

The event is raised when there is a right click or a tap and hold action on an OverlayArea.

Parameters:
{object}oData? An application-specific payload object that will be passed to the event handler along with the event object when firing the event
{function}fnFunction The function to be called when the event occurs
{object}oListener? Context object to call the event handler with. Defaults to this sap.ui.vk.OverlayArea itself
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
attachEdgeClick(oData?, fnFunction, oListener?): sap.ui.vk.OverlayArea
Attaches event handler fnFunction to the edgeClick event of this sap.ui.vk.OverlayArea.

When called, the context of the event handler (its this) will be bound to oListener if specified, otherwise it will be bound to this sap.ui.vk.OverlayArea itself.

This event is raised when the edge of an OverlayArea is clicked.

Parameters:
{object}oData? An application-specific payload object that will be passed to the event handler along with the event object when firing the event
{function}fnFunction The function to be called when the event occurs
{object}oListener? Context object to call the event handler with. Defaults to this sap.ui.vk.OverlayArea itself
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
attachEdgeContextMenu(oData?, fnFunction, oListener?): sap.ui.vk.OverlayArea
Attaches event handler fnFunction to the edgeContextMenu event of this sap.ui.vk.OverlayArea.

When called, the context of the event handler (its this) will be bound to oListener if specified, otherwise it will be bound to this sap.ui.vk.OverlayArea itself.

This event is raised when the edge of an OverlayArea is right clicked.

Parameters:
{object}oData? An application-specific payload object that will be passed to the event handler along with the event object when firing the event
{function}fnFunction The function to be called when the event occurs
{object}oListener? Context object to call the event handler with. Defaults to this sap.ui.vk.OverlayArea itself
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
attachHandleClick(oData?, fnFunction, oListener?): sap.ui.vk.OverlayArea
Attaches event handler fnFunction to the handleClick event of this sap.ui.vk.OverlayArea.

When called, the context of the event handler (its this) will be bound to oListener if specified, otherwise it will be bound to this sap.ui.vk.OverlayArea itself.

This event is raised when the design handle of a changable OverlayArea is clicked.

Parameters:
{object}oData? An application-specific payload object that will be passed to the event handler along with the event object when firing the event
{function}fnFunction The function to be called when the event occurs
{object}oListener? Context object to call the event handler with. Defaults to this sap.ui.vk.OverlayArea itself
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
attachHandleContextMenu(oData?, fnFunction, oListener?): sap.ui.vk.OverlayArea
Attaches event handler fnFunction to the handleContextMenu event of this sap.ui.vk.OverlayArea.

When called, the context of the event handler (its this) will be bound to oListener if specified, otherwise it will be bound to this sap.ui.vk.OverlayArea itself.

This event is raised when the design handle of a changable OverlayArea is right clicked.

Parameters:
{object}oData? An application-specific payload object that will be passed to the event handler along with the event object when firing the event
{function}fnFunction The function to be called when the event occurs
{object}oListener? Context object to call the event handler with. Defaults to this sap.ui.vk.OverlayArea itself
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
attachHandleMoved(oData?, fnFunction, oListener?): sap.ui.vk.OverlayArea
Attaches event handler fnFunction to the handleMoved event of this sap.ui.vk.OverlayArea.

When called, the context of the event handler (its this) will be bound to oListener if specified, otherwise it will be bound to this sap.ui.vk.OverlayArea itself.

This event is raised when the design handle of a changable OverlayArea is moved.

Parameters:
{object}oData? An application-specific payload object that will be passed to the event handler along with the event object when firing the event
{function}fnFunction The function to be called when the event occurs
{object}oListener? Context object to call the event handler with. Defaults to this sap.ui.vk.OverlayArea itself
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
detachClick(fnFunction, oListener): sap.ui.vk.OverlayArea
Detaches event handler fnFunction from the click event of this sap.ui.vk.OverlayArea.

The passed function and listener object must match the ones used for event registration.

Parameters:
{function}fnFunction The function to be called, when the event occurs
{object}oListener Context object on which the given function had to be called
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
detachContextMenu(fnFunction, oListener): sap.ui.vk.OverlayArea
Detaches event handler fnFunction from the contextMenu event of this sap.ui.vk.OverlayArea.

The passed function and listener object must match the ones used for event registration.

Parameters:
{function}fnFunction The function to be called, when the event occurs
{object}oListener Context object on which the given function had to be called
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
detachEdgeClick(fnFunction, oListener): sap.ui.vk.OverlayArea
Detaches event handler fnFunction from the edgeClick event of this sap.ui.vk.OverlayArea.

The passed function and listener object must match the ones used for event registration.

Parameters:
{function}fnFunction The function to be called, when the event occurs
{object}oListener Context object on which the given function had to be called
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
detachEdgeContextMenu(fnFunction, oListener): sap.ui.vk.OverlayArea
Detaches event handler fnFunction from the edgeContextMenu event of this sap.ui.vk.OverlayArea.

The passed function and listener object must match the ones used for event registration.

Parameters:
{function}fnFunction The function to be called, when the event occurs
{object}oListener Context object on which the given function had to be called
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
detachHandleClick(fnFunction, oListener): sap.ui.vk.OverlayArea
Detaches event handler fnFunction from the handleClick event of this sap.ui.vk.OverlayArea.

The passed function and listener object must match the ones used for event registration.

Parameters:
{function}fnFunction The function to be called, when the event occurs
{object}oListener Context object on which the given function had to be called
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
detachHandleContextMenu(fnFunction, oListener): sap.ui.vk.OverlayArea
Detaches event handler fnFunction from the handleContextMenu event of this sap.ui.vk.OverlayArea.

The passed function and listener object must match the ones used for event registration.

Parameters:
{function}fnFunction The function to be called, when the event occurs
{object}oListener Context object on which the given function had to be called
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
detachHandleMoved(fnFunction, oListener): sap.ui.vk.OverlayArea
Detaches event handler fnFunction from the handleMoved event of this sap.ui.vk.OverlayArea.

The passed function and listener object must match the ones used for event registration.

Parameters:
{function}fnFunction The function to be called, when the event occurs
{object}oListener Context object on which the given function had to be called
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
fireClick(mArguments?): sap.ui.vk.OverlayArea
Fires event click to attached listeners.
Parameters:
{Map}mArguments? The arguments to pass along with the event
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
fireContextMenu(mArguments?): sap.ui.vk.OverlayArea
Fires event contextMenu to attached listeners.

Expects the following event parameters:

  • menu of type sap.ui.unified.MenuMenu to open
Parameters:
{Map}mArguments? The arguments to pass along with the event
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
fireEdgeClick(mArguments?): sap.ui.vk.OverlayArea
Fires event edgeClick to attached listeners.

Expects the following event parameters:

  • index of type intIndex of the clicked edge. The numbering is zero based and the first edge with index 0 starts at the first position in the position array and end at the second.
Parameters:
{Map}mArguments? The arguments to pass along with the event
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
fireEdgeContextMenu(mArguments?): sap.ui.vk.OverlayArea
Fires event edgeContextMenu to attached listeners.

Expects the following event parameters:

  • index of type intIndex of the clicked edge. The numbering is zero based and the first edge with index 0 starts at the first position in the position array and end at the second.
  • menu of type sap.ui.unified.MenuMenu to open
Parameters:
{Map}mArguments? The arguments to pass along with the event
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
fireHandleClick(mArguments?): sap.ui.vk.OverlayArea
Fires event handleClick to attached listeners.
Parameters:
{Map}mArguments? The arguments to pass along with the event
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
fireHandleContextMenu(mArguments?): sap.ui.vk.OverlayArea
Fires event handleContextMenu to attached listeners.

Expects the following event parameters:

  • index of type intIndex of the clicked handle. The numbering is zero based.
  • menu of type sap.ui.unified.MenuMenu to open
Parameters:
{Map}mArguments? The arguments to pass along with the event
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
fireHandleMoved(mArguments?): sap.ui.vk.OverlayArea
Fires event handleMoved to attached listeners.
Parameters:
{Map}mArguments? The arguments to pass along with the event
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
getChangeable(): boolean
Gets current value of property changeable.

Set to true if OverlayArea is changeable.

Default value is false.

Returns:
{boolean} Value of property changeable
Gets current value of property color.

The fill color of the OverlayArea.

Default value is rgba(200, 50, 50, 0.3).

Returns:
{sap.ui.core.CSSColor} Value of property color
getColorBorder(): sap.ui.core.CSSColor
Gets current value of property colorBorder.

The border color of the OverlayArea.

Default value is rgba(200, 50, 50, 1.0).

Returns:
{sap.ui.core.CSSColor} Value of property colorBorder
getColorNonSelect(): string
Gets current value of property colorNonSelect.

The non-select color of the OverlayArea in case non-selection de-highligthing is desired.

Returns:
{string} Value of property colorNonSelect
getColorSelect(): string
Gets current value of property colorSelect.

The select color of the OverlayArea in case selection highligthing is desired.

Returns:
{string} Value of property colorSelect
getDeltaColorHot(): string
Gets current value of property deltaColorHot.

Color or color delta when object is hovered. Color deltas can be declared in the format RHLSA(;;;)

Default value is RHLSA(0;1.3;1.0;1.0).

Returns:
{string} Value of property deltaColorHot
getKey(): string
Gets current value of property key.

Unique identifier for the object. This is optional. If not provided the default identifier sId is used. However, sId is generated if template binding is used and thus it is not stable. Provide the key if the object really needs a unique and stable identifier.

Returns:
{string} Value of property key
getPosition(): string
Gets current value of property position.

The position array for the OverlayArea. The format is "x0;y0;0;...;xN,yN,0".

Returns:
{string} Value of property position
getSelect(): boolean
Gets current value of property select.

set to true if the element is selected

Default value is false.

Returns:
{boolean} Value of property select
openContextMenu(oMenu): void
open the context menu
Parameters:
{object}oMenu the context menu to be opened
setChangeable(bChangeable): sap.ui.vk.OverlayArea
Sets a new value for property changeable.

Set to true if OverlayArea is changeable.

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

Default value is false.

Parameters:
{boolean}bChangeable New value for property changeable
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
setColor(sColor): sap.ui.vk.OverlayArea
Sets a new value for property color.

The fill color of the OverlayArea.

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

Default value is rgba(200, 50, 50, 0.3).

Parameters:
{sap.ui.core.CSSColor}sColor New value for property color
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
setColorBorder(sColorBorder): sap.ui.vk.OverlayArea
Sets a new value for property colorBorder.

The border color of the OverlayArea.

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

Default value is rgba(200, 50, 50, 1.0).

Parameters:
{sap.ui.core.CSSColor}sColorBorder New value for property colorBorder
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
setColorNonSelect(sColorNonSelect): sap.ui.vk.OverlayArea
Sets a new value for property colorNonSelect.

The non-select color of the OverlayArea in case non-selection de-highligthing is desired.

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

Parameters:
{string}sColorNonSelect New value for property colorNonSelect
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
setColorSelect(sColorSelect): sap.ui.vk.OverlayArea
Sets a new value for property colorSelect.

The select color of the OverlayArea in case selection highligthing is desired.

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

Parameters:
{string}sColorSelect New value for property colorSelect
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
setDeltaColorHot(sDeltaColorHot): sap.ui.vk.OverlayArea
Sets a new value for property deltaColorHot.

Color or color delta when object is hovered. Color deltas can be declared in the format RHLSA(;;;)

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

Default value is RHLSA(0;1.3;1.0;1.0).

Parameters:
{string}sDeltaColorHot New value for property deltaColorHot
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
setKey(sKey): sap.ui.vk.OverlayArea
Sets a new value for property key.

Unique identifier for the object. This is optional. If not provided the default identifier sId is used. However, sId is generated if template binding is used and thus it is not stable. Provide the key if the object really needs a unique and stable identifier.

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

Parameters:
{string}sKey New value for property key
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
setPosition(sPosition): sap.ui.vk.OverlayArea
Sets a new value for property position.

The position array for the OverlayArea. The format is "x0;y0;0;...;xN,yN,0".

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

Parameters:
{string}sPosition New value for property position
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining
setSelect(bSelect): sap.ui.vk.OverlayArea
Sets a new value for property select.

set to true if the element is selected

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

Default value is false.

Parameters:
{boolean}bSelect New value for property select
Returns:
{sap.ui.vk.OverlayArea} Reference to this in order to allow method chaining