devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
11 lines (10 loc) • 382 B
JavaScript
import { RtfExportSR } from '../../../translation-table/rtf-export-sr';
import { RtfPictureExporter } from './rtf-picture-exporter';
export class RtfPngPictureExporter extends RtfPictureExporter {
getRtfPictureType() {
return RtfExportSR.PNGPictureKeyword;
}
constructor(rtfBuilder, run, base64Uri) {
super(rtfBuilder, run, base64Uri);
}
}