devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 675 B
JavaScript
import { StyleBase } from '../../style-base';
export class TableCellStyle extends StyleBase {
constructor(styleName, localizedName, deleted, hidden, semihidden, isDefault, tableCellProperties, characterProperties) {
super(styleName, localizedName, deleted, hidden, semihidden, isDefault);
this.tableCellProperties = tableCellProperties;
this.characterProperties = characterProperties;
}
clone() {
return new TableCellStyle(this.styleName, this.localizedName, this.deleted, this.hidden, this.semihidden, this.isDefault, this.tableCellProperties, this.characterProperties);
}
}
TableCellStyle.DEFAULT_STYLENAME = "";