HtmlFixedSaveOptions.ExportFormFields

HtmlFixedSaveOptions ExportFormFields property. Gets or sets indication of whether form fields are exported as interactive items as input tag rather than converted to text or graphics.

HtmlFixedSaveOptions.ExportFormFields property

Gets or sets indication of whether form fields are exported as interactive items (as ‘input’ tag) rather than converted to text or graphics.

public bool ExportFormFields { get; set; }

Examples

Shows how to export form fields as interactive items.

HtmlFixedSaveOptions htmlFixedSaveOptions = new HtmlFixedSaveOptions();
htmlFixedSaveOptions.ExportFormFields = true;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "HtmlFixedSaveOptions.ExportFormFields.html", htmlFixedSaveOptions)
    .Execute();

See Also