/*! * devextreme-angular-test * Version: 17.2.8 * Build date: Mon Feb 05 2018 * * Copyright (c) 2012 - 2018 Developer Express Inc. ALL RIGHTS RESERVED * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file in the root of the project for details. * * https://github.com/DevExpress/devextreme-angular */ import { NestedOption } from '../../../core/nested-option'; import DevExpress from 'devextreme/bundles/dx.all'; export abstract class DxoFormOptions extends NestedOption { get accessKey(): string { return this._getOption('accessKey'); } set accessKey(value: string) { this._setOption('accessKey', value); } get activeStateEnabled(): boolean { return this._getOption('activeStateEnabled'); } set activeStateEnabled(value: boolean) { this._setOption('activeStateEnabled', value); } get alignItemLabels(): boolean { return this._getOption('alignItemLabels'); } set alignItemLabels(value: boolean) { this._setOption('alignItemLabels', value); } get alignItemLabelsInAllGroups(): boolean { return this._getOption('alignItemLabelsInAllGroups'); } set alignItemLabelsInAllGroups(value: boolean) { this._setOption('alignItemLabelsInAllGroups', value); } get colCount(): number| string { return this._getOption('colCount'); } set colCount(value: number| string) { this._setOption('colCount', value); } get colCountByScreen(): any { return this._getOption('colCountByScreen'); } set colCountByScreen(value: any) { this._setOption('colCountByScreen', value); } get customizeItem(): Function { return this._getOption('customizeItem'); } set customizeItem(value: Function) { this._setOption('customizeItem', value); } get disabled(): boolean { return this._getOption('disabled'); } set disabled(value: boolean) { this._setOption('disabled', value); } get elementAttr(): any { return this._getOption('elementAttr'); } set elementAttr(value: any) { this._setOption('elementAttr', value); } get focusStateEnabled(): boolean { return this._getOption('focusStateEnabled'); } set focusStateEnabled(value: boolean) { this._setOption('focusStateEnabled', value); } get formData(): any { return this._getOption('formData'); } set formData(value: any) { this._setOption('formData', value); } get height(): number| Function| string { return this._getOption('height'); } set height(value: number| Function| string) { this._setOption('height', value); } get hint(): string { return this._getOption('hint'); } set hint(value: string) { this._setOption('hint', value); } get hoverStateEnabled(): boolean { return this._getOption('hoverStateEnabled'); } set hoverStateEnabled(value: boolean) { this._setOption('hoverStateEnabled', value); } get items(): Array { return this._getOption('items'); } set items(value: Array) { this._setOption('items', value); } get labelLocation(): string { return this._getOption('labelLocation'); } set labelLocation(value: string) { this._setOption('labelLocation', value); } get minColWidth(): number { return this._getOption('minColWidth'); } set minColWidth(value: number) { this._setOption('minColWidth', value); } get onContentReady(): Function { return this._getOption('onContentReady'); } set onContentReady(value: Function) { this._setOption('onContentReady', value); } get onDisposing(): Function { return this._getOption('onDisposing'); } set onDisposing(value: Function) { this._setOption('onDisposing', value); } get onEditorEnterKey(): Function { return this._getOption('onEditorEnterKey'); } set onEditorEnterKey(value: Function) { this._setOption('onEditorEnterKey', value); } get onFieldDataChanged(): Function { return this._getOption('onFieldDataChanged'); } set onFieldDataChanged(value: Function) { this._setOption('onFieldDataChanged', value); } get onInitialized(): Function { return this._getOption('onInitialized'); } set onInitialized(value: Function) { this._setOption('onInitialized', value); } get onOptionChanged(): Function { return this._getOption('onOptionChanged'); } set onOptionChanged(value: Function) { this._setOption('onOptionChanged', value); } get optionalMark(): string { return this._getOption('optionalMark'); } set optionalMark(value: string) { this._setOption('optionalMark', value); } get readOnly(): boolean { return this._getOption('readOnly'); } set readOnly(value: boolean) { this._setOption('readOnly', value); } get requiredMark(): string { return this._getOption('requiredMark'); } set requiredMark(value: string) { this._setOption('requiredMark', value); } get requiredMessage(): string { return this._getOption('requiredMessage'); } set requiredMessage(value: string) { this._setOption('requiredMessage', value); } get rtlEnabled(): boolean { return this._getOption('rtlEnabled'); } set rtlEnabled(value: boolean) { this._setOption('rtlEnabled', value); } get screenByWidth(): Function { return this._getOption('screenByWidth'); } set screenByWidth(value: Function) { this._setOption('screenByWidth', value); } get scrollingEnabled(): boolean { return this._getOption('scrollingEnabled'); } set scrollingEnabled(value: boolean) { this._setOption('scrollingEnabled', value); } get showColonAfterLabel(): boolean { return this._getOption('showColonAfterLabel'); } set showColonAfterLabel(value: boolean) { this._setOption('showColonAfterLabel', value); } get showOptionalMark(): boolean { return this._getOption('showOptionalMark'); } set showOptionalMark(value: boolean) { this._setOption('showOptionalMark', value); } get showRequiredMark(): boolean { return this._getOption('showRequiredMark'); } set showRequiredMark(value: boolean) { this._setOption('showRequiredMark', value); } get showValidationSummary(): boolean { return this._getOption('showValidationSummary'); } set showValidationSummary(value: boolean) { this._setOption('showValidationSummary', value); } get tabIndex(): number { return this._getOption('tabIndex'); } set tabIndex(value: number) { this._setOption('tabIndex', value); } get validationGroup(): string { return this._getOption('validationGroup'); } set validationGroup(value: string) { this._setOption('validationGroup', value); } get visible(): boolean { return this._getOption('visible'); } set visible(value: boolean) { this._setOption('visible', value); } get width(): number| Function| string { return this._getOption('width'); } set width(value: number| Function| string) { this._setOption('width', value); } }