APOGridCell

SAPGUI. APOGridCell

APOGridCell

Constructor

new APOGridCell()

An APOGridCell object

Methods

format() → {Promise.<string>}

Gets the cell format.
Returns:
a promise that is fulfilled with the format of the cell.
Type
Promise.<string>

isEditable() → {Promise.<boolean>}

Indicates whether the cell is editable.
Returns:
a promise that is fulfilled with the editable status of this cell.
Type
Promise.<boolean>

selectMenuItem(menuItem) → {Promise.<void>}

Right-clicks the cell and selects the specified menu item.
Parameters:
NameTypeDescription
menuItemstringThe name of the menu item.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

setValue(value) → {Promise.<void>}

Set the content of this cell.
Parameters:
NameTypeDescription
valuestringThe content of this cell.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

value() → {Promise.<string>}

The content of this cell.
Returns:
a promise that is fulfilled with the content of this cell.
Type
Promise.<string>