devexpress-richedit
Version: 
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
9 lines (8 loc) • 406 B
TypeScript
import { CommandBase, ICommandOptions } from '../command-base';
import { IntervalCommandState } from '../command-states';
export declare class ToggleAllFieldsCommand extends CommandBase<IntervalCommandState> {
    getState(): IntervalCommandState;
    isEnabled(): boolean;
    executeCore(_state: IntervalCommandState, options: ICommandOptions): boolean;
    isEnabledInReadOnlyMode(): boolean;
}