devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 435 B
TypeScript
import { Rectangle } from '@devexpress/utils/lib/geometry/rectangle';
export declare enum LayoutBookmarkBoxType {
StartBox = 0,
EndBox = 1
}
export declare class BookmarkBox extends Rectangle {
boxType: LayoutBookmarkBoxType;
color: string;
static DEFAULT_WIDTH: number;
static DEFAULT_BORDER_WIDTH: number;
constructor(boxType: LayoutBookmarkBoxType);
equals(obj: BookmarkBox): boolean;
}