UNPKG

devexpress-richedit

Version:

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

13 lines (12 loc) 605 B
import { ICloneable, ISupportCopyFrom } from '@devexpress/utils/lib/types'; import { LayoutTableHorizontalBorder } from './layout-table-horizontal-border'; export declare class HorizontalLineBordersInfo implements ICloneable<HorizontalLineBordersInfo>, ISupportCopyFrom<HorizontalLineBordersInfo> { isOffsetFromTop: boolean; yPosition: number; borders: LayoutTableHorizontalBorder[]; maxWidth: number; constructor(isOffsetFromTop: boolean); updateWidth(width: number): void; clone(): HorizontalLineBordersInfo; copyFrom(obj: HorizontalLineBordersInfo): void; }