UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

14 lines (13 loc) 346 B
export class NonVisualDrawingObjectInfo { 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; } }