Table of Contents

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

PdfAction

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

RectangleF

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

object

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

bool

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

bool

Name

Gets or sets the PDF form field name

public string Name { get; set; }

Property Value

string

Page

Gets the PDF page where this field is located

public PdfPage Page { get; }

Property Value

PdfPage

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

bool

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

bool

Style

Gets or sets the PDF form field style

public PdfFormFieldStyle Style { get; set; }

Property Value

PdfFormFieldStyle

ToolTip

Gets or sets the PDF form field tooltip

public string ToolTip { get; set; }

Property Value

string

Value

Gets or sets the PDF form field value

public object Value { get; set; }

Property Value

object