VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Tree.InteractiveForms Namespace / PdfInteractiveFormChoiceField Class / IsCommitOnSelectionChange Property
Syntax Requirements SeeAlso
In This Topic
    IsCommitOnSelectionChange Property (PdfInteractiveFormChoiceField)
    In This Topic
    Gets or sets a value indicating whether the new value is committed as soon as a selection is made with the pointing device.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(False)>
    <DescriptionAttribute("A value indicating whether the new value is committed as soon as a selection is made with the pointing device.")>
    <CategoryAttribute("Common")>
    Public Property IsCommitOnSelectionChange As Boolean
    
    
    [DefaultValue(False)]
    [Description("A value indicating whether the new value is committed as soon as a selection is made with the pointing device.")]
    [Category("Common")]
    public bool IsCommitOnSelectionChange { get; set; }
    
    
    [DefaultValue(False)]
    [Description("A value indicating whether the new value is committed as soon as a selection is made with the pointing device.")]
    [Category("Common")]
    public: __property bool get_IsCommitOnSelectionChange();
    public: __property void set_IsCommitOnSelectionChange(
    bool value
    );
    [DefaultValue(False)]
    [Description("A value indicating whether the new value is committed as soon as a selection is made with the pointing device.")]
    [Category("Common")]
    public:
    property bool IsCommitOnSelectionChange { bool get(); void set(bool value); }

    Property Value

    True - the new value is committed as soon as a selection is made with the pointing device. This option enables applications to perform an action once a selection is made, without requiring the user to exit the field.
    false - the new value is not committed until the user exits the field.

    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: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also