VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Tree.InteractiveForms Namespace / PdfInteractiveFormRadioButtonGroupField Class / IsRadiosInUnison Property
Syntax Requirements SeeAlso
In This Topic
    IsRadiosInUnison Property (PdfInteractiveFormRadioButtonGroupField)
    In This Topic
    Gets or sets a value indicating whether this field is radios in unison.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(False)>
    <CategoryAttribute("Common")>
    <DescriptionAttribute("A value indicating whether this field is radios in unison.")>
    Public Property IsRadiosInUnison As Boolean
    
    
    [DefaultValue(False)]
    [Category("Common")]
    [Description("A value indicating whether this field is radios in unison.")]
    public bool IsRadiosInUnison { get; set; }
    
    
    [DefaultValue(False)]
    [Category("Common")]
    [Description("A value indicating whether this field is radios in unison.")]
    public: __property bool get_IsRadiosInUnison();
    public: __property void set_IsRadiosInUnison(
    bool value
    );
    [DefaultValue(False)]
    [Category("Common")]
    [Description("A value indicating whether this field is radios in unison.")]
    public:
    property bool IsRadiosInUnison { bool get(); void set(bool value); }

    Property Value

    true - a group of radio buttons within a radio button field that use the same value for the on state will turn on and off in unison; that is if one is checked, they are all checked.
    false - the buttons are mutually exclusive (the same behavior as HTML radio buttons).

    Value of this property is a part of inheritable flag group.
    Property value is taken from the field flags if at least one flag is specified explicitly.
    Property value is taken from the field flags of the field parent in the field hierarchy if not one flag is specified explicitly.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also