devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
19 lines (18 loc) • 431 B
TypeScript
export declare class SizeApi {
width: number;
height: number;
constructor(width: number, height: number);
}
export interface IMargins {
left?: number;
right?: number;
top?: number;
bottom?: number;
}
export declare class MarginsApi {
left: number;
right: number;
top: number;
bottom: number;
constructor(left: number, right: number, top: number, bottom: number);
}