UNPKG

devexpress-richedit

Version:

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

19 lines (18 loc) 928 B
import { ViewType } from '../../view-settings/views-settings'; import { CommandBase, CommandSimpleOptions } from '../command-base'; import { SimpleCommandState } from '../command-states'; export declare class ChangeViewTypeCommand extends CommandBase<SimpleCommandState> { protected getRelatedCommands(): Record<number, boolean>; isEnabledInReadOnlyMode(): boolean; executeCore(_state: SimpleCommandState, options: CommandSimpleOptions<ViewType>): boolean; getState(): SimpleCommandState; updateControlState(): void; } export declare class SwitchToPrintLayoutViewCommand extends ChangeViewTypeCommand { DEPRECATEDConvertOptionsParameter(_parameter: any): ViewType; getState(): SimpleCommandState; } export declare class SwitchToSimpleViewCommand extends ChangeViewTypeCommand { DEPRECATEDConvertOptionsParameter(_parameter: any): ViewType; getState(): SimpleCommandState; }