Aspose.Words.Examples.CSharp.Loading_Saving.ConvertDocumentToHtmlWithRoundtrip.Run C# (CSharp) Метод

Run() публичный статический Метод

public static Run ( ) : void
Результат void
        public static void Run()
        {
            // ExStart:ConvertDocumentToHtmlWithRoundtrip
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_LoadingAndSaving();

            // Load the document from disk.
            Document doc = new Document(dataDir + "Test File (doc).doc");

            HtmlSaveOptions options = new HtmlSaveOptions();

            // HtmlSaveOptions.ExportRoundtripInformation property specifies
            // Whether to write the roundtrip information when saving to HTML, MHTML or EPUB.
            // Default value is true for HTML and false for MHTML and EPUB.
            options.ExportRoundtripInformation = true;
            
            doc.Save(dataDir + "ExportRoundtripInformation_out.html", options);
            // ExEnd:ConvertDocumentToHtmlWithRoundtrip

            Console.WriteLine("\nDocument converted to html with roundtrip informations successfully.");
        }
    }
ConvertDocumentToHtmlWithRoundtrip