VisioConversionOptions

Defines properties and methods that are needed for a Visio Conversion

public class VisioConversionOptions : ConversionOptions
Public Class VisioConversionOptions
    Inherits ConversionOptions

Inheritance: ObjectConversionOptionsVisioConversionOptions

Licensing Info

This class is a DynamicPDF Converter feature. One of the following is required for non-evaluation usage:

Examples

This example shows how to use VisioConversionOptions constructor.
Imports ceTe.DynamicPDF.Conversion

Module Module1

Sub Main()

    ' create new instance of VisioConversionOptions.
    Dim conversionOptions As VisioConversionOptions = New VisioConversionOptions(True)
    
   ' Create new instance of Converter by providing suitable parameters.
    Dim visioConversion As VisioConverter = New VisioConverter("C:\MyDocument.vsd",conversionOptions)

    ' Call Convert method to start conversion
    visioConversion.Convert("C:\MyOutput.pdf")

End Sub
 
End Module
using ceTe.DynamicPDF.Conversion;

class MyClass
{
    static void Main()
    {
        // create new instance of VisioConversionOptions.
        VisioConversionOptions conversionOptions=new VisioConversionOptions(true);

        // Create new instance of Converter by providing suitable parameters.
        VisioConverter visio = new VisioConverter(@"C:\MyDocument.vsd",conversionOptions);
        
        //Call Convert method to start conversion
        visio.Convert(@"C:\MyOutput.pdf");
    }
}

Constructors

VisioConversionOptions([Optional] Boolean)Defines properies and methods that are neeeded for Visio conversions.

Properties

AppendToPdfGets or sets the boolean value to specify if append to pdf conversionOptions to be enabled.
(Inherited from ConversionOptions)
AuthorGets or sets the author meta data for the converted PDF.
(Inherited from ConversionOptions)
CancelTokenGets or sets a CancellationToken for conversion task.
(Inherited from ConversionOptions)
CreatorGets or sets the creator meta data for the converted PDF.
(Inherited from ConversionOptions)
KeywordsGets or sets the keywords meta data for the converted PDF.
(Inherited from ConversionOptions)
PdfAGets or sets the boolean value to specify if converted pdf will adhare to PDF/A (ISO 19005-1) standard.
ProducerGets or sets the producer meta data for the converted PDF.
(Inherited from ConversionOptions)
SubjectGets or sets the subject meta data for the converted PDF.
(Inherited from ConversionOptions)
TitleGets or sets the title meta data for the converted PDF.
(Inherited from ConversionOptions)

Methods

Equals(Object)Determines whether the specified Object is equal to the current Object .
(Inherited from Object)
GetHashCode()Serves as a hash function for a particular type.
(Inherited from Object)
GetType()Gets the Type of the current instance.
(Inherited from Object)
ToString()Returns a String that represents the current Object .
(Inherited from Object)

See Also

ceTe.DynamicPDF.Conversion

In this topic