devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
16 lines (15 loc) • 743 B
TypeScript
import { SubDocumentInfoBase } from '../../model/sub-document-infos';
import { InnerClientProperties } from '../../rich-utils/inner-client-properties';
import { LayoutSelectionInfo } from './layout-selection-info';
export declare class LayoutSelection {
searchInfo: LayoutSelectionInfo;
misspelledInfo: LayoutSelectionInfo;
selectionInfo: LayoutSelectionInfo;
rangePermissionInfo: LayoutSelectionInfo;
subDocumentInfo: SubDocumentInfoBase;
pageIndex: number;
firstPageIndexWithSelection: number;
lastPageIndexWithSelection: number;
constructor(subDocumentInfo: SubDocumentInfoBase, pageIndex: number, innerClientProperties: InnerClientProperties);
updatePageIndexWithSelection(): void;
}