devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
10 lines (9 loc) • 478 B
TypeScript
import { CommandBase, CommandSimpleOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
import { ICommandState } from '../i-command';
export declare class ChangePageColorCommand extends CommandBase<SimpleCommandState> {
getState(): ICommandState;
executeCore(_state: ICommandState, parameter: CommandSimpleOptions<number>): boolean;
isEnabled(): boolean;
DEPRECATEDConvertOptionsParameter(parameter: any): number;
}