←Select platform

Format Property

Summary
Gets the document format type associated with this options class.
Syntax
C#
C++/CLI
Java
Python
public override DocumentFormat Format { get; } 
@Override public DocumentFormat getFormat() 
public: 
property DocumentFormat Format { 
   DocumentFormat get() override; 
} 
Format # get  (EmfDocumentOptions) 

Property Value

This property will always return DocumentFormat.Emf.

Remarks

This property is required internally by LEADTOOLS.

Example
C#
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 OCR 
   var outputFileName = Path.Combine(LEAD_VARS.ImagesDir, "Example.emf"); 
   // Create a new instance of the LEADTOOLS Document Writer 
   var docWriter = new DocumentWriter(); 
 
   // Change the EMF options 
   var 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 needed 
   docWriter.SetOptions(DocumentFormat.Emf, emfOptions); 
 
   // Create a new EMF document from LTD file 
   Console.WriteLine("Creating new EMF document : {0}", outputFileName); 
   docWriter.Convert(inputFileName, outputFileName, DocumentFormat.Emf); 
} 
 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Document.Writer Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.