WordProcessingEditOptions

WordProcessingEditOptions class

Allows to specify custom options for editing documents of all supportable WordProcessing (Words-compliant) formats like DOC(X), RTF, ODT etc.

public class WordProcessingEditOptions : IEditOptions

Constructors

Name Description
WordProcessingEditOptions() Creates and returns a new instance of the WordProcessingEditOptions class, where all options are set to their default values
WordProcessingEditOptions(bool) Creates and returns a new instance of the WordProcessingEditOptions class with specified pagination and default all other options

Properties

Name Description
EnableLanguageInformation { get; set; } Specifies whether language information is exported to the HTML markup in a form of ’lang’ HTML attributes. This option may be useful for roundtrip conversion of the multi-language documents. By default it is disabled (false).
EnablePagination { get; set; } Allows to enable or disable pagination in the resultant HTML document. By default is disabled (false).
ExtractOnlyUsedFont { get; set; } Gets or sets a value indicating whether extract only font resources that are used in the textual content of the document.
FontExtraction { get; set; } Responsible for extracting font resources, which are used in the input WordProcessing document. By default doesn’t extract any fonts (NotExtract).
InputControlsClassName { get; set; } Allows to specify a class name, which will be placed to the ‘class’ attributes in every HTML element, that represents some field in the input WordProcessing document. By default is NULL - ‘class’ attributes are not applied.
UseInlineStyles { get; set; } Controls where to store the styling and formatting data of the input WordProcessing document: in external stylesheet (false) or as inline styles in the HTML markup (true). By default external styles are used (false).

See Also