UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

11 lines (10 loc) 544 B
import { TextBoxProperties } from '../../model/floating-objects/text-box-properties'; import { CommandBase, CommandSimpleOptions } from '../command-base'; import { SimpleCommandState } from '../command-states'; export declare class ChangeTextBoxPropertiesCommand extends CommandBase<SimpleCommandState> { getState(): SimpleCommandState; canModify(): boolean; isEnabled(): boolean; executeCore(_state: SimpleCommandState, options: CommandSimpleOptions<TextBoxProperties>): boolean; getValue(): TextBoxProperties; }