ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF.Forms Namespace / Form Class / CreateRadioGroup Method
The full name of the field to add, including partial names.




In This Topic
    CreateRadioGroup Method
    In This Topic
    Add a new RadioGroup to a form.
    Syntax
    'Declaration
     
    Public Function CreateRadioGroup( _
       ByVal fullName As String _
    ) As RadioGroup
    'Usage
     
    Dim instance As Form
    Dim fullName As String
    Dim value As RadioGroup
     
    value = instance.CreateRadioGroup(fullName)
    public RadioGroup CreateRadioGroup( 
       string fullName
    )
    public: RadioGroup* CreateRadioGroup( 
       string* fullName
    ) 
    public:
    RadioGroup^ CreateRadioGroup( 
       String^ fullName
    ) 

    Parameters

    fullName
    The full name of the field to add, including partial names.

    Return Value

    A newly-added RadioGroup field.
    Exceptions
    ExceptionDescription
    Thrown in case of error. In common case it is fullName argument is null or empty. Exception message will specify what is wrong.
    Remarks
    To add options and buttons to the new group, use RadioGroup.AddOption.
    See Also