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

Parameters:

Name Type
context IContext

Returns: LabelFormCellProxy

Methods

getMaxLines

getMaxLines(): number

Returns the maxLines property value of the Label FormCell.

Implementation of ILabelFormCellProxy.getMaxLines

Returns: number


getStyle

getStyle(): string

Returns the style class value of the Label FormCell.

Implementation of ILabelFormCellProxy.getStyle

Returns: string


getText

getText(): string

Returns the text value of the Label FormCell.

Implementation of ILabelFormCellProxy.getText

Returns: string


getTextWrap

getTextWrap(): boolean

Returns the textWrap property value of the Label FormCell.

Implementation of ILabelFormCellProxy.getTextWrap

Returns: boolean


setMaxLines

setMaxLines(maxLines: number): Promise<any>

Sets the maxLines property of the Label FormCell.

Implementation of ILabelFormCellProxy.setMaxLines

Parameters:

Name Type Description
maxLines number value to set.

Returns: Promise<any>


setStyle

setStyle(styleClass: string): LabelFormCellProxy

Sets the style class of the Label FormCell.

Implementation of ILabelFormCellProxy.setStyle Overrides FormCellControlProxy.setStyle

Parameters:

Name Type Description
styleClass string value to set.

Returns: LabelFormCellProxy


setText

setText(text: string): Promise<any>

Sets the text value of the Label FormCell.

Implementation of ILabelFormCellProxy.setText

Parameters:

Name Type Description
text string value to set.

Returns: Promise<any>


setTextWrap

setTextWrap(textWrap: boolean): Promise<any>

Sets the textWrap property of the Label FormCell.

Implementation of ILabelFormCellProxy.setTextWrap

Parameters:

Name Type Description
textWrap boolean value to set.

Returns: Promise<any>