HtmlSaveOptions.ExportTextInputFormFieldAsText

HtmlSaveOptions ExportTextInputFormFieldAsText property. Controls how text input form fields are saved to HTML or MHTML. Default value is false.

HtmlSaveOptions.ExportTextInputFormFieldAsText property

Controls how text input form fields are saved to HTML or MHTML. Default value is false.

public bool ExportTextInputFormFieldAsText { get; set; }

Remarks

When set to true, exports text input form fields as normal text. When false, exports Word text input form fields as INPUT elements in HTML.

When exporting to EPUB, text input form fields are always saved as text due to requirements of this format.

Examples

Shows how to export dropdown list and text input as text to HTML.

HtmlSaveOptions htmlSaveOptions = new HtmlSaveOptions();
htmlSaveOptions.ExportDropDownFormFieldAsText = true;
htmlSaveOptions.ExportTextInputFormFieldAsText = true;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "HtmlSaveOptions.ExportDropDownFormFieldAsText.html", htmlSaveOptions)
    .Execute();

See Also