devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
21 lines (20 loc) • 471 B
JavaScript
export class SizeApi {
width;
height;
constructor(width, height) {
this.width = Math.max(0, width);
this.height = Math.max(0, height);
}
}
export class MarginsApi {
left;
right;
top;
bottom;
constructor(left, right, top, bottom) {
this.left = Math.max(0, left);
this.right = Math.max(0, right);
this.top = Math.max(0, top);
this.bottom = Math.max(0, bottom);
}
}