Click or drag to resize

RadioButtonFormField Class

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.
Inheritance Hierarchy
SystemObject
  Atalasoft.PdfDoc.Generating.FormsBaseFormField
    Atalasoft.PdfDoc.Generating.FormsBaseButtonFormField
      Atalasoft.PdfDoc.Generating.FormsRadioButtonFormField

Namespace:  Atalasoft.PdfDoc.Generating.Forms
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public class RadioButtonFormField : BaseButtonFormField

The RadioButtonFormField type exposes the following members.

Constructors
  NameDescription
Public methodRadioButtonFormField
Initializes a new instance of the RadioButtonFormField class.
Top
Properties
  NameDescription
Public propertyAdditionalActions
Gets the additional actions that may be used by annotations that are children of this field.
(Inherited from BaseFormField.)
Public propertyChildFields
Gets the child fields for this field.
(Inherited from BaseFormField.)
Public propertyDefaultTextAppearance
Gets or sets the default text appearance that is shared by children of this field.
(Inherited from BaseFormField.)
Public propertyDefaultValue
Gets or sets the default string value.
Public propertyEnforceReadyOnlyWithException
Gets or sets a value indicating whether to enforce ready only with the IsFieldReadOnly propery with an exception.
(Inherited from BaseFormField.)
Public propertyFieldAlternateDescription
Gets or sets the field alternate description for display in the user interface.
(Inherited from BaseFormField.)
Public propertyFieldFullName
Gets the fully qualified name of the field. This value is only correct if ParentField has been set. When the parent chain is properly set up, this will return ParentField.FieldFullName + '.' + FieldName
(Inherited from BaseFormField.)
Public propertyFieldName
Gets or sets the name of the field.
(Inherited from BaseFormField.)
Public propertyFieldNameForExport
Gets or sets the field name for export.
(Inherited from BaseFormField.)
Public propertyIsFieldNoExport
Gets or sets a value indicating whether this field should not be export.
(Inherited from BaseFormField.)
Public propertyIsFieldReadOnly
Gets or sets a value indicating whether this field is read only.
(Inherited from BaseFormField.)
Public propertyIsFieldRequired
Gets or sets a value indicating whether this field is required.
(Inherited from BaseFormField.)
Public propertyParentField
Gets or sets the parent field.
(Inherited from BaseFormField.)
Public propertyValue
Gets or sets the string value.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodImplementMe
Built for inheritance.
(Overrides BaseButtonFormFieldImplementMe.)
Public methodStatic memberMakeRadioSet(String, String, String, RadioButtonWidgetAnnotation)
Makes a radio set from the collection of RadioButtonWidgetAnnotation objects. Note that it is the client's responsibility to ensure that the radio buttons are put into the Annotations collection of a page in the document.
Public methodStatic memberMakeRadioSet(PdfGeneratedPage, String, String, String, RadioButtonWidgetAnnotation)
Makes the radio set from the set of radio buttons installing them in the supplied page (if any).
Public methodStatic memberCode exampleMakeRadioSet(GlobalResources, PdfGeneratedPage, String, String, String, String, PdfBounds)
Makes a set of radio button fields with a single parent field. If currentValue or defaultValue are null, the code will substitute the standard radio button cleared value.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodThrowIfReadOnlyT
If EnforceReadyOnlyWithException is true and IsFieldReadOnly is true, throw an InvalidOperationException, otherwise return value.
(Inherited from BaseFormField.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also