We export html containing paragraphs.
It puts a box around each line and I can only edit that one line. Is there a way to have it appear as a normal word document in which you can edit the page versus one line at a time?
Code:
DocSaveOptions options = new DocSaveOptions()
{
//HorizontalResolution = 200,
//VerticalResolution = 200,
//JpegQuality = 100,
//BackgroundColor = System.Drawing.Color.AliceBlue
};
options.PageSetup.AnyPage = new Aspose.Html.Drawing.Page(/*new Aspose.Html.Drawing.Size(600, 300), */new Margin(20, 20, 20, 20));
Converter.ConvertHTML(document, options, streamProvider);
image.png (156.9 KB)