devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 733 B
JavaScript
export class TableConditionalStyle {
constructor(tableProperties, tableRowProperties, tableCellProperties, maskedParagraphProperties, maskedCharacterProperties, tabs) {
this.tableProperties = tableProperties;
this.tableRowProperties = tableRowProperties;
this.tableCellProperties = tableCellProperties;
this.maskedParagraphProperties = maskedParagraphProperties;
this.maskedCharacterProperties = maskedCharacterProperties;
this.tabs = tabs;
}
clone() {
return new TableConditionalStyle(this.tableProperties, this.tableRowProperties, this.tableCellProperties, this.maskedParagraphProperties, this.maskedCharacterProperties, this.tabs?.clone());
}
}