HtmlSaveOptions

HtmlSaveOptions class

Allows to specify custom options for saving the EditableDocument instance to the HTML format

public sealed class HtmlSaveOptions

Constructors

Name Description
HtmlSaveOptions() The default constructor.

Properties

Name Description
AttributeValueDelimiter { get; set; } Controls which delimiter around the attribute values in HTML elements will be used: single quote (default value) or double quote
EmbedStylesheetsIntoMarkup { get; set; } Controls where to store the CSS stylesheet(s): as external resources (false), or embed them into the HTML markup, inside the STYLE element in the HTML->HEAD section (true)
HtmlTagCase { get; set; } Controls how the HTML tag names will be present in HTML markup: All lower case (default value), All upper case, or First letter upper case
SavingCallback { get; set; } Interface, which must be implemented by the end-user for saving all the external HTML resources

See Also