Class: SectionHeaderItemProxy¶
SectionHeaderItemProxy is a developer-facing class that provides access to a section header item control. It is passed to rules to provide access to a control for application-specific customizations.
Hierarchy¶
-
SectionHeaderItemProxy
Implements¶
Summary¶
Constructors¶
Properties¶
Class Properties¶
Currently none in this class.
Inherited Properties¶
Accessors¶
Class Accessors¶
Currently none in this class.
Inherited Accessors¶
Methods¶
Class Methods¶
Inherited Methods¶
Constructors¶
constructor¶
+ new SectionHeaderItemProxy(context
: IContext): SectionHeaderItemProxy
Overrides ControlProxy.constructor
Parameters:
Name | Type |
---|---|
context |
IContext |
Returns: SectionHeaderItemProxy
Methods¶
getVisible¶
▸ getVisible(): boolean
Implementation of ISectionHeaderItemProxy
Returns the visible property value of the SectionHeaderItem.
Returns: boolean
returns true if the SectionHeaderItem is visible otherwise false.
redraw¶
▸ redraw(): Promise‹any›
Implementation of ISectionHeaderItemProxy
Overrides ControlProxy.redraw
Redraw control is not supported. Instead, the parent section redraw is triggered.
Returns: Promise‹any›
setVisible¶
▸ setVisible(value
: boolean, redraw
: boolean): this
Implementation of ISectionHeaderItemProxy
Overrides ControlProxy.setVisible
Sets the SectionHeaderItem's visible state with redraw
Parameters:
Name | Type | Default | Description |
---|---|---|---|
value |
boolean | - | visible state |
redraw |
boolean | true | true if redraw after set the visible state |
Returns: this