devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 756 B
TypeScript
import { ICloneable } from '@devexpress/utils/lib/types';
import { CharacterProperties } from '../../character/character-properties';
import { StyleBase } from '../../style-base';
import { TableCellProperties } from '../properties/table-cell-properties';
export declare class TableCellStyle extends StyleBase<TableCellStyle> implements ICloneable<TableCellStyle> {
static DEFAULT_STYLENAME: string;
tableCellProperties: TableCellProperties;
characterProperties: CharacterProperties;
constructor(styleName: string, localizedName: string, deleted: boolean, hidden: boolean, semihidden: boolean, isDefault: boolean, tableCellProperties: TableCellProperties, characterProperties: CharacterProperties);
clone(): TableCellStyle;
}