devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
20 lines (19 loc) • 881 B
JavaScript
export class TableConditionalStyle {
tableProperties;
tableRowProperties;
tableCellProperties;
maskedParagraphProperties;
maskedCharacterProperties;
tabs;
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());
}
}