devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
8 lines (7 loc) • 428 B
TypeScript
import { CommandSimpleOptions } from '../../common/commands/command-base';
import { BorderInfo } from '../../common/model/borders/border-info';
import { IRichEditControl } from '../../common/interfaces/i-rich-edit-core';
export declare class BorderCommandOptions extends CommandSimpleOptions<BorderInfo> {
forceApply: boolean;
constructor(control: IRichEditControl, parameter: BorderInfo, forceApply: boolean);
}