Class PdfFormField
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
This class represents a field in the PDF form of a PDF document
[ClassInterface(ClassInterfaceType.AutoDual)]
public class PdfFormField
- Inheritance
-
PdfFormField
- Derived
- Inherited Members
Properties
Action
The action to be performed when the field is activated
public PdfAction Action { set; }
Property Value
BoundingRectangle
Gets or sets the PDF form field control box in PDF page with the dimensions expressed in points
public RectangleF BoundingRectangle { get; set; }
Property Value
DefaultValue
Gets or sets the default value of the field to which the field reverts when a reset form action is executed
public object DefaultValue { get; set; }
Property Value
Export
Gets or sets a flag indicating if the field is exported by a submit form action. The default value of the property is true
public bool Export { get; set; }
Property Value
Flatten
Gets or sets a flag indicating if the form field is flattened. The default value of the property is false
public bool Flatten { get; set; }
Property Value
Name
Gets or sets the PDF form field name
public string Name { get; set; }
Property Value
Page
Gets the PDF page where this field is located
public PdfPage Page { get; }
Property Value
ReadOnly
Gets or sets a flag indicating if the field is read only. The default value of the property is false
public bool ReadOnly { get; set; }
Property Value
Required
Gets or sets a flag indicating if the field should have a value at the time it is exported by a submit form action. The default value of the property is false
public bool Required { get; set; }
Property Value
Style
Gets or sets the PDF form field style
public PdfFormFieldStyle Style { get; set; }
Property Value
ToolTip
Gets or sets the PDF form field tooltip
public string ToolTip { get; set; }
Property Value
Value
Gets or sets the PDF form field value
public object Value { get; set; }