devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
16 lines (15 loc) • 1.13 kB
TypeScript
import { XmlReader } from '../../../zip/xml-reader';
import { Data } from '../../data';
import { ElementDestination } from '../destination';
export declare abstract class BodyDestinationBase extends ElementDestination {
protected static onBookmarkStart(data: Data, _reader: XmlReader): ElementDestination;
protected static onBookmarkEnd(data: Data, _reader: XmlReader): ElementDestination;
protected static onRangePermissionStart(data: Data, _reader: XmlReader): ElementDestination;
protected static onRangePermissionEnd(data: Data, _reader: XmlReader): ElementDestination;
protected static onCommentStart(data: Data, _reader: XmlReader): ElementDestination;
protected static onCommentEnd(data: Data, _reader: XmlReader): ElementDestination;
protected static onStructuredDocument(data: Data, _reader: XmlReader): ElementDestination;
protected static onCustomXml(data: Data, _reader: XmlReader): ElementDestination;
protected static onDeleted(data: Data, _reader: XmlReader): ElementDestination;
protected static onInserted(data: Data, _reader: XmlReader): ElementDestination;
}