Skip to content

Class: LabelFormCellProxy

LabelFormCellProxy is a developer-facing interface that provides access to a Label control and allows customizations. In addition it provides access to the IFormCellProxy interface.

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 LabelFormCellProxy(context: IContext): LabelFormCellProxy

Inherited from FormCellControlProxy.constructor

Overrides ControlProxy.constructor

Parameters:

Name Type
context IContext

Returns: LabelFormCellProxy

Methods

getMaxLines

getMaxLines(): number

Implementation of ILabelFormCellProxy

Returns the maxLines property value of the Label FormCell.

Returns: number


getStyle

getStyle(): string

Implementation of ILabelFormCellProxy

Returns the style class value of the Label FormCell.

Returns: string


getText

getText(): string

Implementation of ILabelFormCellProxy

Returns the text value of the Label FormCell.

Returns: string


getTextWrap

getTextWrap(): boolean

Implementation of ILabelFormCellProxy

Returns the textWrap property value of the Label FormCell.

Returns: boolean


setMaxLines

setMaxLines(maxLines: number): void

Implementation of ILabelFormCellProxy

Sets the maxLines property of the Label FormCell.

Parameters:

Name Type Description
maxLines number value to set.

Returns: void


setStyle

setStyle(styleClass: string): this

Implementation of ILabelFormCellProxy

Overrides ControlProxy.setStyle

Sets the style class of the Label FormCell.

Parameters:

Name Type Description
styleClass string value to set.

Returns: this


setText

setText(text: string): void

Implementation of ILabelFormCellProxy

Sets the text value of the Label FormCell.

Parameters:

Name Type Description
text string value to set.

Returns: void


setTextWrap

setTextWrap(textWrap: boolean): void

Implementation of ILabelFormCellProxy

Sets the textWrap property of the Label FormCell.

Parameters:

Name Type Description
textWrap boolean value to set.

Returns: void