devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 847 B
TypeScript
import { Table } from '../../../../../../common/model/tables/main-structures/table';
import { XmlReader } from '../../../zip/xml-reader';
import { ImportRangePermissionInfo } from '../../model/import-range-permission-info';
import { LeafElementDestination } from '../destination';
export declare abstract class RangePermissionElementDestination extends LeafElementDestination {
static predefinedGroupNames: Record<string, string>;
static actualGroupNames: Record<string, string>;
private static createActualGroupNames;
processElementOpen(reader: XmlReader): Promise<void>;
protected getActualGroupName(value: string): string;
protected getLastRowIndexFromTable(table: Table): number;
protected abstract assignRangePermissionProperties(rangePermission: ImportRangePermissionInfo, reader: XmlReader): any;
}