Skip to content

Class: DurationPickerFormCellProxy

A designer-facing interface that provides access to a DurationPicker FormCell control. 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 DurationPickerFormCellProxy(context: IContext): DurationPickerFormCellProxy

Inherited from FormCellControlProxy.constructor

Parameters:

Name Type
context IContext

Returns: DurationPickerFormCellProxy

Methods

getMinuteInterval

getMinuteInterval(): number

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

Implementation of IDurationPickerFormCellProxy.getMinuteInterval

Returns: number


getUnit

getUnit(): string

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

Implementation of IDurationPickerFormCellProxy.getUnit

Returns: string


setMinuteInterval

setMinuteInterval(interval: number): Promise<any>

Sets the MinuteInterval property of the DurationPicker FormCell's control. Accepted values are: "Date", "Datetime","Time"

Implementation of IDurationPickerFormCellProxy.setMinuteInterval

Parameters:

Name Type
interval number

Returns: Promise<any>


setUnit

setUnit(unit: string): Promise<any>

Sets the Unit property of the FormCell's control. Accepted values are: "Date", "Datetime", "Time"

Implementation of IDurationPickerFormCellProxy.setUnit

Parameters:

Name Type Description
unit string value to set.

Returns: Promise<any>