Skip to content

OFToolBar

Oracle Forms OFToolBar.

UI element class: oracle.ewt.toolBar.ToolBar

Extends OracleFormsObject

Extends SeSSimulatedObject

Behavior Pattern: OracleFormsToolBarBehavior

Property Summary

Property Description Getter Setter
ItemChecked Check if item is checked. GetItemChecked SetItemChecked
ItemIndexByName Returns item index by its name. GetItemIndexByName

Action Summary

Action Description
DoClickItem Performs click on the navigation item

Property Detail

ItemChecked

Check if item is checked.

Type: boolean

Accessors: GetItemChecked, SetItemChecked

value = SeS('SomeOFToolBar').GetItemChecked(nameOrInd)

SeS('SomeOFToolBar').SetItemChecked(nameOrInd, bValue)

ItemIndexByName

Returns item index by its name. 'false' if name is not found.

Getter Parameters:

Name Type Description
name string

Type: number|boolean

Accessors: GetItemIndexByName

value = SeS('SomeOFToolBar').GetItemIndexByName(name)

Action Detail

DoClickItem

Performs click on the navigation item

SeS('SomeOFToolBar').DoClickItem(nameCaptionIndex)

Parameters:

Name Type Description
nameCaptionIndex string | number index, name or caption of the item to be selected.

Returns:

boolean: 'true' if successful, 'false' otherwise.