text-box-options.d.ts 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*!
  2. * devextreme-angular
  3. * Version: 19.1.16
  4. * Build date: Tue Oct 18 2022
  5. *
  6. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  7. *
  8. * This software may be modified and distributed under the terms
  9. * of the MIT license. See the LICENSE file in the root of the project for details.
  10. *
  11. * https://github.com/DevExpress/devextreme-angular
  12. */
  13. import { NestedOption } from '../../../core/nested-option';
  14. import DevExpress from 'devextreme/bundles/dx.all';
  15. export declare abstract class DxoTextBoxOptions extends NestedOption {
  16. accessKey: string;
  17. activeStateEnabled: boolean;
  18. buttons: Array<string | DevExpress.ui.dxTextEditorButton>;
  19. disabled: boolean;
  20. elementAttr: any;
  21. focusStateEnabled: boolean;
  22. height: number | Function | string;
  23. hint: string;
  24. hoverStateEnabled: boolean;
  25. inputAttr: any;
  26. isValid: boolean;
  27. mask: string;
  28. maskChar: string;
  29. maskInvalidMessage: string;
  30. maskRules: any;
  31. maxLength: number | string;
  32. mode: string;
  33. name: string;
  34. onChange: Function;
  35. onContentReady: Function;
  36. onCopy: Function;
  37. onCut: Function;
  38. onDisposing: Function;
  39. onEnterKey: Function;
  40. onFocusIn: Function;
  41. onFocusOut: Function;
  42. onInitialized: Function;
  43. onInput: Function;
  44. onKeyDown: Function;
  45. onKeyPress: Function;
  46. onKeyUp: Function;
  47. onOptionChanged: Function;
  48. onPaste: Function;
  49. onValueChanged: Function;
  50. placeholder: string;
  51. readOnly: boolean;
  52. rtlEnabled: boolean;
  53. showClearButton: boolean;
  54. showMaskMode: string;
  55. spellcheck: boolean;
  56. stylingMode: string;
  57. tabIndex: number;
  58. text: string;
  59. useMaskedValue: boolean;
  60. validationError: any;
  61. validationMessageMode: string;
  62. value: string;
  63. valueChangeEvent: string;
  64. visible: boolean;
  65. width: number | Function | string;
  66. }