UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

10 lines (9 loc) 472 B
import { RtfPictureExporterFactory } from './rtf-picture-exporter-factory'; export class RtfPictureExportStrategy { export(rtfBuilder, run, imageCache, nonVisualDrawingProperties) { this.exportShapePicturePrefix(rtfBuilder); const exporter = RtfPictureExporterFactory.createRtfPictureExporter(rtfBuilder, run, imageCache); exporter.exportPicture(nonVisualDrawingProperties); this.exportShapePicturePostfix(rtfBuilder); } }