TdxPDFForm.GetRadioGroupField(string) Method
In This Article
Returns a radio group field by its name on the form.
#Declaration
Delphi
function GetRadioGroupField(const AFullName: string): TdxPDFRadioGroupField;
#Parameters
Name | Type | Description |
---|---|---|
AFull |
string | The name of a radio group field. |
#Returns
Type | Description |
---|---|
Tdx |
The radio group field with the specified name (AFull |
#Exceptions
Type | Description |
---|---|
EList |
The “Item not found” exception occurs if the form has no field with the specified name (AFull |
EInvalid |
The “Invalid class typecast” exception occurs if the field with the specified name is not a radio group. |
#Remarks
The TryGetRadioGroupField function is a safe alternative to GetRadioGroupField.
See Also