devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
18 lines (17 loc) • 396 B
JavaScript
export class NonVisualDrawingObjectInfo {
id;
name;
title;
description;
copyFrom(obj) {
this.id = obj.id;
this.name = obj.name;
this.title = obj.title;
this.description = obj.description;
}
clone() {
const result = new NonVisualDrawingObjectInfo();
result.copyFrom(this);
return result;
}
}