happypdf / AcroButtonFlags
Enumeration: AcroButtonFlags
Defined in: src/core/acroform/flags.ts:28
From PDF spec table 226
Enumeration Members
NoToggleToOff
NoToggleToOff: number;Defined in: src/core/acroform/flags.ts:34
(Radio buttons only) If set, exactly one radio button shall be selected at all times; selecting the currently selected button has no effect. If clear, clicking the selected button deselects it, leaving no button selected.
PushButton
PushButton: number;Defined in: src/core/acroform/flags.ts:45
If set, the field is a pushbutton that does not retain a permanent value.
Radio
Radio: number;Defined in: src/core/acroform/flags.ts:40
If set, the field is a set of radio buttons; if clear, the field is a check box. This flag may be set only if the Pushbutton flag is clear.
RadiosInUnison
RadiosInUnison: number;Defined in: src/core/acroform/flags.ts:53
If set, 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. If clear, the buttons are mutually exclusive (the same behavior as HTML radio buttons).