devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
10 lines (9 loc) • 770 B
TypeScript
import { ParagraphLineSpacingType } from '../../../../../../../common/model/paragraph/paragraph-properties';
import { IParagraphPropertyDescriptor } from '../../../../../../../common/model/paragraph/paragraph-property-descriptors';
import { XmlReader } from '../../../../zip/xml-reader';
import { ParagraphFormattingLeafElementDestination } from '../paragraph-formatting-leaf-element-destination';
export declare class ParagraphSpacingDestination extends ParagraphFormattingLeafElementDestination<ParagraphLineSpacingType> {
processElementOpen(reader: XmlReader): Promise<void>;
protected getDescriptor(): IParagraphPropertyDescriptor<ParagraphLineSpacingType>;
protected applyLineSpacingValue(lineSpacing: number, lineSpacingRule: string): void;
}