UNPKG

devexpress-richedit

Version:

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

15 lines (14 loc) 723 B
import { StyleBase } from '../../style-base'; export class TableCellStyle extends StyleBase { static DEFAULT_STYLENAME = ""; tableCellProperties; characterProperties; 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); } }