devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
11 lines (10 loc) • 586 B
TypeScript
import { PictureSize } from '../../model/floating-objects/sizes';
import { CommandBase, CommandSimpleOptions, ICommandOptions } from '../command-base';
import { SimpleCommandState } from '../command-states';
export declare class ChangeAnchoredPictureSizeCommand extends CommandBase<SimpleCommandState> {
getState(): SimpleCommandState;
canModify(): boolean;
isEnabled(): boolean;
protected DEPRECATEDCorrectlMainCommandOptions(options: ICommandOptions): void;
executeCore(_state: SimpleCommandState, options: CommandSimpleOptions<PictureSize>): boolean;
}