HTMLSaveOptions Class
Contents
[
Hide
]HTMLSaveOptions class
Represents HTML save options. By assigning specific properties you can manage resource processing such as max handling depth and so on. More info see in documentation article.
public class HTMLSaveOptions : SaveOptions
Constructors
Name | Description |
---|---|
HTMLSaveOptions() | The default constructor. |
Properties
Name | Description |
---|---|
[getDocumentType] | |
[setDocumentType] Gets or sets the output document type. | |
getResourceHandlingOptions Gets a ResourceHandlingOptions object which is used for configuration of resources handling. | |
[getSerializeInputValue] | |
[setSerializeInputValue] This option controls whether to serialize the value of the HTMLInputElement ’s or the HTMLTextAreaElement ’s “value” property into the “value” attribute. |
Fields
Name | Description |
---|---|
const AUTO | The output document type will be selected automatically. |
const HTML | The document will be saved as HTML. |
const XHTML | The document will be saved as XHTML. |
Remarks
You can download the complete examples and data files from GitHub.
Examples
import com.aspose.html;
import com.aspose.html.Dom.Svg;
import com.aspose.html.Saving;
import System;
...
// Prepare an output path for an HTML document
String documentPath = Path.Combine(OutputDir, "save-with-linked-file.html");
// Prepare a simple HTML file with a linked document
File.WriteAllText(documentPath, "<p>Hello World!</p>" +
"<a href='linked.html'>linked file</a>");
// Prepare a simple linked HTML file
File.WriteAllText(Path.Combine(OutputDir, "linked.html"), "<p>Hello linked file!</p>");
// Load the "save-with-linked-file.html" into memory
using (var document = new HTMLDocument(documentPath))
{
// Create a save options instance
var options = new HTMLSaveOptions();
// The following line with value '0' cuts off all other linked HTML-files while saving this instance
// If you remove this line or change value to the '1', the 'linked.html' file will be saved as well to the output folder
options.ResourceHandlingOptions.MaxHandlingDepth = 1;
// Save the document with the save options
document.Save(Path.Combine(OutputDir, "save-with-linked-file_out.html"), options);
}
*OutputDir - user output folder.
See Also
- class SaveOptions
- package com.aspose.html.Saving
- package Aspose.HTML