devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
20 lines (19 loc) • 825 B
TypeScript
import { Table } from '../../../../../../model/tables/main-structures/table';
import { TableProperties } from '../../../../../../model/tables/properties/table-properties';
import { TableLookTypes } from '../../../../../../model/tables/secondary-structures/table-base-structures';
import { TableWidthUnit } from '../../../../../../model/tables/secondary-structures/table-units';
export declare class RtfTableProperties {
coreProperties: TableProperties;
_halfSpace: number;
useHalfSpace: boolean;
rightToLeft: boolean;
style: number;
preferredWidth: TableWidthUnit;
lookTypes: TableLookTypes;
constructor();
get halfSpace(): number;
set halfSpace(value: number);
isChanged(): boolean;
copyFrom(obj: RtfTableProperties): void;
apply(table: Table): void;
}