PdfFormRadioButtonsGroup Class

A group of radio buttons in a PDF form

Definition

Namespace: HiQPdf
Assembly: HiQPdf.NetCore (in HiQPdf.NetCore.dll) Version: 16.0.0
C#
public class PdfFormRadioButtonsGroup : PdfFormField
Inheritance
Object    PdfFormField    PdfFormRadioButtonsGroup

Properties

Action The action to be performed when the field is activated, for example when a button field is clicked
(Inherited from PdfFormField)
BoundingRectangle The field bounding rectangle in PDF page. The rectangle dimensions are expressed in points
(Inherited from PdfFormField)
Count The number of radio buttons in group
DefaultValue The default value of the field to which the field reverts when a reset form action is executed
(Inherited from PdfFormField)
Export Indicates if field is exported by a submit form action. This property is true by default
(Inherited from PdfFormField)
Flatten Indicates if the field is flattened in the generated PDF document
(Inherited from PdfFormField)
ItemInt32 Retrieves the radio button at the given index in the radio buttons group
ItemString Retrieves the radio button with the given name from the radio buttons group
Name The field name
(Inherited from PdfFormField)
ReadOnly Indicates if the field is read only. This property is false by default
(Inherited from PdfFormField)
Required Indicates if the field should have a value at the time it is exported by a submit form action. This property is false by default
(Inherited from PdfFormField)
Style The field style
(Inherited from PdfFormField)
ToolTip The field tooltip
(Inherited from PdfFormField)
Value The field value
(Inherited from PdfFormField)

Methods

AddRadioButton(RectangleF, String) Creates a radio button with given rectangle and the given name in the radio button group PDF page
AddRadioButton(RectangleF, String, PdfPage) Creates a radio button with given rectangle and the given name in the given PDF page
Equals
(Inherited from Object)
Finalize
(Inherited from Object)
GetHashCode
(Inherited from Object)
GetType
(Inherited from Object)
MemberwiseClone
(Inherited from Object)
SetCheckedRadioButton(Int32) Checks on the radio button at the given index
SetCheckedRadioButton(PdfFormRadioButton) Checks on the given radio button
SetCheckedRadioButton(String) Checks on the radio button with the given name
ToString
(Inherited from Object)

See Also