UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

10 lines (9 loc) 482 B
import { ICloneable, ISupportCopyFrom } from '@devexpress/utils/lib/types'; import { LayoutBoxType } from './layout-box'; import { LayoutPageBreakBox } from './layout-page-break-box'; export declare class LayoutSectionMarkBox extends LayoutPageBreakBox implements ICloneable<LayoutSectionMarkBox>, ISupportCopyFrom<LayoutSectionMarkBox> { get isSectionBreakBox(): boolean; clone(): LayoutSectionMarkBox; getType(): LayoutBoxType; getHiddenText(): string; }