/** * DevExtreme (ui/text_area.d.ts) * Version: 21.1.7 * Build date: Thu Aug 07 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import { UserDefinedElement, } from '../core/element'; import { EventInfo, NativeEventInfo, InitializedEventInfo, ChangedOptionInfo, } from '../events/index'; import { ValueChangedInfo, } from './editor/editor'; import dxTextBox, { dxTextBoxOptions, } from './text_box'; /** @public */ export type ChangeEvent = NativeEventInfo; /** @public */ export type ContentReadyEvent = EventInfo; /** @public */ export type CopyEvent = NativeEventInfo; /** @public */ export type CutEvent = NativeEventInfo; /** @public */ export type DisposingEvent = EventInfo; /** @public */ export type EnterKeyEvent = NativeEventInfo; /** @public */ export type FocusInEvent = NativeEventInfo; /** @public */ export type FocusOutEvent = NativeEventInfo; /** @public */ export type InitializedEvent = InitializedEventInfo; /** @public */ export type InputEvent = NativeEventInfo; /** @public */ export type KeyDownEvent = NativeEventInfo; /** @public */ export type KeyPressEvent = NativeEventInfo; /** @public */ export type KeyUpEvent = NativeEventInfo; /** @public */ export type OptionChangedEvent = EventInfo & ChangedOptionInfo; /** @public */ export type PasteEvent = NativeEventInfo; /** @public */ export type ValueChangedEvent = NativeEventInfo & ValueChangedInfo; /** * @deprecated use Properties instead * @namespace DevExpress.ui */ export interface dxTextAreaOptions extends dxTextBoxOptions { /** * @docid * @default false * @public */ autoResizeEnabled?: boolean; /** * @docid * @default undefined * @public */ maxHeight?: number | string; /** * @docid * @default undefined * @public */ minHeight?: number | string; /** * @docid * @default true * @public */ spellcheck?: boolean; } /** * @docid * @isEditor * @inherits dxTextBox * @namespace DevExpress.ui * @public */ export default class dxTextArea extends dxTextBox { constructor(element: UserDefinedElement, options?: dxTextAreaOptions) } /** @public */ export type Properties = dxTextAreaOptions; /** @deprecated use Properties instead */ export type Options = dxTextAreaOptions; /** @deprecated use Properties instead */ export type IOptions = dxTextAreaOptions;