Click or drag to resize

Atalasoft.PdfDoc.Generating.Forms Namespace

 
Classes
  ClassDescription
Public classBaseButtonFormField
BaseButtonFormField is an abstract class that represents a parent field to any button form field or button widget.
Public classBaseFormField
BaseFormField is an abstract class used to represent all form fields that will be parents of other fields or widget annotations.
Public classCheckboxFormField
A CheckboxFormField represents a parent field of other IFormElement objects that are either CheckboxFormField objects or CheckboxWidgetAnnotations.
Public classChoiceFormField
A ChoiceFormField represents a parent field of other IFormElement objects that are either ChoiceFormField objects or ChoiceWidgetAnnotations.
Public classFormVisitor
FormVisitor is an set of utility methods for visiting the elements in a PDF form. There are variations for visiting the elements in either depth first or breadth first order as well as convenience methods that only visit the actual widget annotations.
Public classGenericFormField
While most implementations of BaseFormField imply that their child fields are a particular type, PDF allows for form fields that have no type associated with them. GenericFormField represents a parent field that may have child fields of any type.
Public classCode examplePdfForm
A PdfForm represents a collection of fields that may be entered by a user for later collection or submission. A form is a hierarchy of form elements ending in nodes which are always BaseWidgetAnnotation object. For the widgets to be visible to the user, they must also be put into the Annotations collection in a PdfGeneratedPage.
Public classPdfFormPropertyProblem
Defines a problem that could occur with the a PdfForm property value.
Public classPushButtonFormField
A PushButtonFormField represents a parent field of other IFormElement objects that are either PushButtonFormField objects or PushButtonWidgetAnnotations.
Public classRadioButtonFormField
A RadioButtonFormField represents a parent field of other IFormElement objects that are either RadioButtonFormField objects or RadioButtonWidgetAnnotations. Making a set of radio buttons that are wired up correctly can be a tricky process. RadioButtonWidgetAnnotations typically are not used without a parent RadioButtonFormField. It is typically easier to use the MakeRadioSet(GlobalResources, PdfGeneratedPage, String, String, String, String, PdfBounds) method to make a set of radio buttons.
Public classSignatureFormField
A SignatureFormField represents a parent field of other IFormElement objects that are either SignatureFormField objects or SignatureWidgetAnnotations.
Public classTextFormField
A TextFormField represents a parent field of other IFormElement objects that are either TextFormField objects or TextWidgetAnnotations.
Interfaces
  InterfaceDescription
Public interfaceIFormElement
An object that implements the IFormElement interface can be used as a field within in a PDF form. It is not recommended to use any but the standard form elements. Client code should not implement this interface.