devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
19 lines (18 loc) • 1.21 kB
TypeScript
import { ParagraphLineSpacingType } from '../../model/paragraph/paragraph-properties';
import { IParagraphPropertyDescriptor } from '../../model/paragraph/paragraph-property-descriptors';
import { LineSpacingParagraphCommandBase } from './add-spacing-after-paragraph-command';
export declare abstract class SetParagraphSpacingTypeCommandBase extends LineSpacingParagraphCommandBase<ParagraphLineSpacingType, boolean> {
getDescriptor(): IParagraphPropertyDescriptor<ParagraphLineSpacingType>;
getValueForState(val: ParagraphLineSpacingType): boolean;
DEPRECATEDConvertOptionsParameter(parameter: any): ParagraphLineSpacingType;
protected abstract getSpacingType(): ParagraphLineSpacingType;
}
export declare class SetSingleParagraphSpacingCommand extends SetParagraphSpacingTypeCommandBase {
protected getSpacingType(): ParagraphLineSpacingType;
}
export declare class SetSesquialteralParagraphSpacingCommand extends SetParagraphSpacingTypeCommandBase {
protected getSpacingType(): ParagraphLineSpacingType;
}
export declare class SetDoubleParagraphSpacingCommand extends SetParagraphSpacingTypeCommandBase {
protected getSpacingType(): ParagraphLineSpacingType;
}