Interface: IToolbarItemProxy¶
A designer-facing interface that provides access to a toolbar item control.
It is passed to rules to provide access to a toolbar item control for application specific customizations.
In addition it provides access to the IControlProxy interface.
Hierarchy¶
-
IToolbarItemProxy
Implemented by¶
Summary¶
Properties¶
Class Properties¶
Currently none in this class.
Inherited Properties¶
Methods¶
Class Methods¶
Inherited Methods¶
Methods¶
getParent¶
▸ getParent(): IToolbarProxy
This method returns toolbar container control
Returns: IToolbarProxy
The control of the toolbar container
getToolbarControls¶
▸ getToolbarControls(): IControlProxy[]
This method returns the top-level controls for this container
deprecated
- use new ToolbarProxy API: getParent().getToolbarControls()
Returns: IControlProxy[]
The controls for this container
getVisible¶
▸ getVisible(): boolean
Returns: boolean
true/false
setVisible¶
▸ setVisible(value
: boolean, redraw
: boolean): any
Overrides IControlProxy.setVisible
Sets the control's visible state with / without redraw
Parameters:
Name | Type | Description |
---|---|---|
value |
boolean | visible state |
redraw |
boolean | true if redraw after setting the visible state |
Returns: any