/*! * 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'; export abstract class DxoTextBoxOptions 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 attr(): any { return this._getOption('attr'); } set attr(value: any) { this._setOption('attr', 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 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 inputAttr(): any { return this._getOption('inputAttr'); } set inputAttr(value: any) { this._setOption('inputAttr', value); } get isValid(): boolean { return this._getOption('isValid'); } set isValid(value: boolean) { this._setOption('isValid', value); } get mask(): string { return this._getOption('mask'); } set mask(value: string) { this._setOption('mask', value); } get maskChar(): string { return this._getOption('maskChar'); } set maskChar(value: string) { this._setOption('maskChar', value); } get maskInvalidMessage(): string { return this._getOption('maskInvalidMessage'); } set maskInvalidMessage(value: string) { this._setOption('maskInvalidMessage', value); } get maskRules(): any { return this._getOption('maskRules'); } set maskRules(value: any) { this._setOption('maskRules', value); } get maxLength(): number| string { return this._getOption('maxLength'); } set maxLength(value: number| string) { this._setOption('maxLength', value); } get mode(): string { return this._getOption('mode'); } set mode(value: string) { this._setOption('mode', value); } get name(): string { return this._getOption('name'); } set name(value: string) { this._setOption('name', value); } get onChange(): Function { return this._getOption('onChange'); } set onChange(value: Function) { this._setOption('onChange', value); } get onContentReady(): Function { return this._getOption('onContentReady'); } set onContentReady(value: Function) { this._setOption('onContentReady', value); } get onCopy(): Function { return this._getOption('onCopy'); } set onCopy(value: Function) { this._setOption('onCopy', value); } get onCut(): Function { return this._getOption('onCut'); } set onCut(value: Function) { this._setOption('onCut', value); } get onDisposing(): Function { return this._getOption('onDisposing'); } set onDisposing(value: Function) { this._setOption('onDisposing', value); } get onEnterKey(): Function { return this._getOption('onEnterKey'); } set onEnterKey(value: Function) { this._setOption('onEnterKey', value); } get onFocusIn(): Function { return this._getOption('onFocusIn'); } set onFocusIn(value: Function) { this._setOption('onFocusIn', value); } get onFocusOut(): Function { return this._getOption('onFocusOut'); } set onFocusOut(value: Function) { this._setOption('onFocusOut', value); } get onInitialized(): Function { return this._getOption('onInitialized'); } set onInitialized(value: Function) { this._setOption('onInitialized', value); } get onInput(): Function { return this._getOption('onInput'); } set onInput(value: Function) { this._setOption('onInput', value); } get onKeyDown(): Function { return this._getOption('onKeyDown'); } set onKeyDown(value: Function) { this._setOption('onKeyDown', value); } get onKeyPress(): Function { return this._getOption('onKeyPress'); } set onKeyPress(value: Function) { this._setOption('onKeyPress', value); } get onKeyUp(): Function { return this._getOption('onKeyUp'); } set onKeyUp(value: Function) { this._setOption('onKeyUp', value); } get onOptionChanged(): Function { return this._getOption('onOptionChanged'); } set onOptionChanged(value: Function) { this._setOption('onOptionChanged', value); } get onPaste(): Function { return this._getOption('onPaste'); } set onPaste(value: Function) { this._setOption('onPaste', value); } get onValueChanged(): Function { return this._getOption('onValueChanged'); } set onValueChanged(value: Function) { this._setOption('onValueChanged', value); } get placeholder(): string { return this._getOption('placeholder'); } set placeholder(value: string) { this._setOption('placeholder', value); } get readOnly(): boolean { return this._getOption('readOnly'); } set readOnly(value: boolean) { this._setOption('readOnly', value); } get rtlEnabled(): boolean { return this._getOption('rtlEnabled'); } set rtlEnabled(value: boolean) { this._setOption('rtlEnabled', value); } get showClearButton(): boolean { return this._getOption('showClearButton'); } set showClearButton(value: boolean) { this._setOption('showClearButton', value); } get showMaskMode(): string { return this._getOption('showMaskMode'); } set showMaskMode(value: string) { this._setOption('showMaskMode', value); } get spellcheck(): boolean { return this._getOption('spellcheck'); } set spellcheck(value: boolean) { this._setOption('spellcheck', value); } get tabIndex(): number { return this._getOption('tabIndex'); } set tabIndex(value: number) { this._setOption('tabIndex', value); } get text(): string { return this._getOption('text'); } set text(value: string) { this._setOption('text', value); } get useMaskedValue(): boolean { return this._getOption('useMaskedValue'); } set useMaskedValue(value: boolean) { this._setOption('useMaskedValue', value); } get validationError(): any { return this._getOption('validationError'); } set validationError(value: any) { this._setOption('validationError', value); } get validationMessageMode(): string { return this._getOption('validationMessageMode'); } set validationMessageMode(value: string) { this._setOption('validationMessageMode', value); } get value(): string { return this._getOption('value'); } set value(value: string) { this._setOption('value', value); } get valueChangeEvent(): string { return this._getOption('valueChangeEvent'); } set valueChangeEvent(value: string) { this._setOption('valueChangeEvent', 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); } }