Aspose.Pdf.Examples.CSharp.AsposePDF.DocumentConversion.PDFToHTML.CreateSubsequentFiles C# (CSharp) Method

CreateSubsequentFiles() public static method

public static CreateSubsequentFiles ( ) : void
return void
        public static void CreateSubsequentFiles()
        {
            // ExStart:CreateSubsequentFiles
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_AsposePdf_DocumentConversion();

            Document doc = new Document(dataDir + "PDFToHTML.pdf");
            
            HtmlSaveOptions options = new HtmlSaveOptions();
            // This is the tested setting
            options.HtmlMarkupGenerationMode = HtmlSaveOptions.HtmlMarkupGenerationModes.WriteOnlyBodyContent;
            options.SplitIntoPages = true;

            doc.Save(dataDir + "CreateSubsequentFiles_out.html", options);
            // ExEnd:CreateSubsequentFiles
        }
        public static void TransparentTextRendering()