@syncfusion/ej2-documenteditor
Version:
Feature-rich document editor control with built-in support for context menu, options pane and dialogs.
45 lines (44 loc) • 1.02 kB
TypeScript
import { WBorder } from './border';
import { IWidget } from '../viewer/page';
/**
* @private
*/
export declare class WBorders implements IWidget {
private leftIn;
private rightIn;
private topIn;
private bottomIn;
private horizontalIn;
private verticalIn;
private diagonalUpIn;
private diagonalDownIn;
isParsing: boolean;
ownerBase: Object;
left: WBorder;
right: WBorder;
top: WBorder;
bottom: WBorder;
horizontal: WBorder;
vertical: WBorder;
diagonalUp: WBorder;
diagonalDown: WBorder;
constructor(node?: Object);
private getPropertyValue;
private getDefaultValue;
private documentParagraphFormat;
getBorder(property: string): WBorder;
/**
* @private
* @returns {void}
*/
clearFormat(): void;
/**
* Disposes the internal objects which are maintained.
*
* @private
* @returns {void}
*/
destroy(): void;
cloneFormat(): WBorders;
copyFormat(borders: WBorders): void;
}