devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
10 lines (9 loc) • 472 B
TypeScript
import { ICloneable, ISupportCopyFrom } from '@devexpress/utils/lib/types';
import { LayoutBoxType } from './layout-box';
import { LayoutPageBreakBox } from './layout-page-break-box';
export declare class LayoutColumnBreakBox extends LayoutPageBreakBox implements ICloneable<LayoutColumnBreakBox>, ISupportCopyFrom<LayoutColumnBreakBox> {
clone(): LayoutColumnBreakBox;
getType(): LayoutBoxType;
getHiddenText(): string;
isLineBreak(): boolean;
}