Skip to content

Class: NoteFormCellProxy

NoteFormCellProxy is a developer-facing interface that provides access to a Note 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 NoteFormCellProxy(context: IContext): NoteFormCellProxy

Overrides FormCellControlProxy.constructor

Parameters:

Name Type
context IContext

Returns: NoteFormCellProxy

Methods

getMaxNumberOfLines

getMaxNumberOfLines(): number

Returns the MaxNumberOfLines property value defined for the FormCell's control.

Implementation of INoteFormCellProxy.getMaxNumberOfLines

Returns: number


getMinNumberOfLines

getMinNumberOfLines(): number

Returns the MinNumberOfLines property value defined for the FormCell's control.

Implementation of INoteFormCellProxy.getMinNumberOfLines

Returns: number


getPlaceHolder

getPlaceHolder(): string

Returns the PlaceHolder property value defined for the FormCell's control.

Implementation of INoteFormCellProxy.getPlaceHolder

Returns: string


setMaxNumberOfLines

setMaxNumberOfLines(maxNumberOfLines: number): Promise<any>

Sets the MaxNumberOfLines property of the FormCell's control.

Implementation of INoteFormCellProxy.setMaxNumberOfLines

Parameters:

Name Type Description
maxNumberOfLines number value to set.

Returns: Promise<any>


setMinNumberOfLines

setMinNumberOfLines(minNumberOfLines: number): Promise<any>

Sets the MinNumberOfLines property of the FormCell's control.

Implementation of INoteFormCellProxy.setMinNumberOfLines

Parameters:

Name Type Description
minNumberOfLines number value to set.

Returns: Promise<any>


setPlaceHolder

setPlaceHolder(placeHolder: string): Promise<any>

Sets the PlaceHolder property of the FormCell's control.

Implementation of INoteFormCellProxy.setPlaceHolder

Parameters:

Name Type Description
placeHolder string value to set.

Returns: Promise<any>