Skip to content

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

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

Returns the visible property value of the SectionHeaderItem.

Implementation of ISectionHeaderItemProxy.getVisible

Returns: boolean

returns true if the SectionHeaderItem is visible otherwise false.


redraw

redraw(): Promise<any>

Redraw control is not supported. Instead, the parent section redraw is triggered.

Implementation of ISectionHeaderItemProxy.redraw Overrides ControlProxy.redraw

Returns: Promise<any>


setVisible

setVisible(value: boolean, redraw?: boolean = true): SectionHeaderItemProxy

Sets the SectionHeaderItem's visible state with redraw

Implementation of ISectionHeaderItemProxy.setVisible Overrides ControlProxy.setVisible

Parameters:

Name Type Description
value boolean visible state
redraw? boolean = true true if redraw after set the visible state

Returns: SectionHeaderItemProxy