devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 532 B
TypeScript
import { TextDirection } from '../../../../../model/tables/secondary-structures/table-base-structures';
export declare enum VerticalAlignment {
Top = 0,
Both = 1,
Center = 2,
Bottom = 3
}
export declare class RtfGeneralSectionInfo {
onlyAllowEditingOfFormFields: boolean;
firstPagePaperSource: number;
otherPagePaperSource: number;
textDirection: TextDirection;
verticalTextAlignment: VerticalAlignment;
rightToLeft: boolean;
copyFrom(obj: RtfGeneralSectionInfo): void;
}