projects/wms-framework/src/lib/models/controls/layouts/ModeSettingsBase.ts
Mode setting base clase.
Properties |
| AllowTileDragging |
Type : any
|
Default value : null
|
|
Indicates if the user is allowed to drag tiles. |
| RepositionAnimation |
Type : any
|
Default value : null
|
|
Determinates how the tile is animated when is moved of position. |
| Static RepositionAnimationProperty |
Type : any
|
Default value : null
|
|
Reposition animation depedency property. |
| ResizeAnimation |
Type : any
|
Default value : null
|
|
Determinates how the tile is animated when is resized. |
| Static ResizeAnimationProperty |
Type : any
|
Default value : null
|
|
Resize animation dependency property. |
| ShouldAnimate |
Type : boolean
|
Default value : true
|
|
Determinates if the tile will be animated. |
export abstract class ModeSettingsBase {
/**
* Reposition animation depedency property.
*
* @static
* @type {*}
* @memberof ModeSettingsBase
*/
static RepositionAnimationProperty: any = null;
/**
* Resize animation dependency property.
*
* @static
* @type {*}
* @memberof ModeSettingsBase
*/
static ResizeAnimationProperty: any = null;
/**
* Indicates if the user is allowed to drag tiles.
*
* @type {*}
* @memberof ModeSettingsBase
*/
AllowTileDragging: any = null;
/**
* Determinates how the tile is animated when is moved of position.
*
* @type {*}
* @memberof ModeSettingsBase
*/
RepositionAnimation: any = null;
/**
* Determinates how the tile is animated when is resized.
*
* @type {*}
* @memberof ModeSettingsBase
*/
ResizeAnimation: any = null;
/**
* Determinates if the tile will be animated.
*
* @type {boolean}
* @memberof ModeSettingsBase
*/
ShouldAnimate: boolean = true;
}