devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
20 lines (19 loc) • 936 B
TypeScript
import { CommandBase, CommandSimpleOptions } from '../../common/commands/command-base';
import { SimpleCommandState } from '../../common/commands/command-states';
import { DocumentFormat } from '../../common/document-format';
export declare class ExportDocumentCommandOptions {
documentFormat?: DocumentFormat;
reason?: string;
documentName?: string;
constructor(documentFormat?: DocumentFormat, reason?: string, documentName?: string);
}
export declare class ExportDocumentCommand extends CommandBase<SimpleCommandState> {
getState(): SimpleCommandState;
DEPRECATEDConvertOptionsParameter(parameter: ExportDocumentCommandOptions | any): any;
executeCore(_state: SimpleCommandState, options: CommandSimpleOptions<ExportDocumentCommandOptions>): boolean;
private getExportDocumentFormat;
base64: string;
private exportCore;
isEnabled(): boolean;
canModify(): boolean;
}