public override DocumentFormat Format { get; }
This property will always return DocumentFormat.Emf.
This property is required internally by LEADTOOLS.
using Leadtools.Document.Writer;using Leadtools;using Leadtools.Codecs;public void EmfDocumentOptionsExample(){var inputFileName = Path.Combine(LEAD_VARS.ImagesDir, "test_ocr1.Ltd"); // LTD file that resulted from OCRvar outputFileName = Path.Combine(LEAD_VARS.ImagesDir, "Example.emf");// Create a new instance of the LEADTOOLS Document Writervar docWriter = new DocumentWriter();// Change the EMF optionsvar emfOptions = docWriter.GetOptions(DocumentFormat.Emf) as EmfDocumentOptions;// EMF currently does not have any extra options// In the future, you can modify the options here if neededdocWriter.SetOptions(DocumentFormat.Emf, emfOptions);// Create a new EMF document from LTD fileConsole.WriteLine("Creating new EMF document : {0}", outputFileName);docWriter.Convert(inputFileName, outputFileName, DocumentFormat.Emf);}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images";}