devexpress-richedit
Version: 
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
18 lines (17 loc) • 1.1 kB
TypeScript
import { MaskedParagraphProperties } from '../../../../../../../common/model/paragraph/paragraph-properties';
import { TabProperties } from '../../../../../../../common/model/paragraph/paragraph-style';
import { Data } from '../../../data';
import { ElementHandlerTable } from '../../destination';
import { ParagraphPropertiesBaseDestination } from '../../paragraph-properties/paragraph-properties-base-destination';
import { StyleDestinationBase } from '../style-destination-base';
export declare class StyleParagraphPropertiesDestination extends ParagraphPropertiesBaseDestination {
    protected get elementHandlerTable(): ElementHandlerTable;
    get numberingId(): number;
    set numberingId(value: number);
    get listLevelIndex(): number;
    set listLevelIndex(value: number);
    static handlerTable: ElementHandlerTable;
    styleDestination: StyleDestinationBase;
    constructor(data: Data, styleDestination: StyleDestinationBase, paragraphProperties: MaskedParagraphProperties, tabs: TabProperties);
    static getThis(data: Data): StyleParagraphPropertiesDestination;
}