devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
11 lines (10 loc) • 696 B
TypeScript
import { MaskedParagraphProperties } from '../../../../../../common/model/paragraph/paragraph-properties';
import { IParagraphPropertyDescriptor } from '../../../../../../common/model/paragraph/paragraph-property-descriptors';
import { Data } from '../../data';
import { LeafElementDestination } from '../destination';
export declare abstract class ParagraphFormattingLeafElementDestination<T> extends LeafElementDestination {
protected readonly paragraphProperties: MaskedParagraphProperties;
constructor(data: Data, paragraphProperties: MaskedParagraphProperties);
setProperty(newValue: T): void;
protected abstract getDescriptor(): IParagraphPropertyDescriptor<T>;
}