Processor.Execute

Processor Execute method. Execute the processor action.

Processor.Execute method

Execute the processor action.

public void Execute()

Examples

Shows how to convert DOCX document to PDF using Fluent API.

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "Converter.ConvertToPdf.pdf")
    .Execute();

See Also