Class PdfFormOptions
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
This class contains the properties to control the automatic conversion of a HTML form into a fillable PDF form
[ClassInterface(ClassInterfaceType.AutoDual)]
public class PdfFormOptions
- Inheritance
-
PdfFormOptions
- Inherited Members
Constructors
PdfFormOptions()
public PdfFormOptions()
Properties
AutoPdfFormEnabled
A flag indicating if the HTML form elements like text boxes, checkboxes, radio buttons and submit buttons are automatically converted to PDF form fields in the generated PDF document. The default value is false.
public bool AutoPdfFormEnabled { get; set; }
Property Value
CheckBoxStyle
Gets the checkbox field style object where you can set the style properties
public PdfFormAutoFieldStyle CheckBoxStyle { get; }
Property Value
ComboBoxStyle
Gets the combo box field style object where you can set the style properties
public PdfFormAutoFieldStyle ComboBoxStyle { get; }
Property Value
ListBoxStyle
Gets the list box field style object where you can set the style properties
public PdfFormAutoFieldStyle ListBoxStyle { get; }
Property Value
MultilineTextBoxStyle
Gets the multiline text box field style object where you can set the style properties
public PdfFormAutoFieldStyle MultilineTextBoxStyle { get; }
Property Value
PasswordTextBoxStyle
Gets the password text box field style object where you can set the style properties
public PdfFormAutoFieldStyle PasswordTextBoxStyle { get; }
Property Value
RadioButtonsGroupStyle
Gets the radio buttons group field style object where you can set the style properties
public PdfFormAutoFieldStyle RadioButtonsGroupStyle { get; }
Property Value
SubmitButtonStyle
Gets the submit button style object where you can set the style properties
public PdfFormAutoFieldStyle SubmitButtonStyle { get; }
Property Value
TextBoxStyle
Gets the text box field style object where you can set the style properties
public PdfFormAutoFieldStyle TextBoxStyle { get; }