UNPKG

devexpress-richedit

Version:

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

16 lines (15 loc) 554 B
export class StyleBase { constructor(styleName, localizedName, deleted, hidden, semihidden, isDefault, base64EncodedImage, id) { this.styleName = styleName; this.deleted = deleted; this.localizedName = localizedName; this.hidden = hidden; this.semihidden = semihidden; this.isDefault = isDefault; this.base64EncodedImage = base64EncodedImage ? base64EncodedImage : null; this.id = id; } equalsByName(obj) { return this.styleName == obj.styleName; } }