[]
DsPdfJS API / ActionResetForm
Represents an action that resets selected interactive form fields to their default values. If no default value is defined for a field, its value is cleared. For fields that can have no value PushButtonField, the action has no effect.
new ActionResetForm(
om):ActionResetForm
Creates a new ActionResetForm.
ObjectManager that controls the lifetime of the ActionResetForm.
ActionResetForm
ActionFieldsBase.constructor
new ActionResetForm():
ActionResetForm
Creates a new ActionResetForm.
ActionResetForm
ActionFieldsBase.constructor
get excludeSpecifiedFields():
boolean
Gets or sets a value indicating whether the fields specified by the 'fields' list should be excluded for processing. By default this property is "false", which means that the fields in the list are processed. If this property is set to "true", the fields in the list are excluded from processing.
boolean
set excludeSpecifiedFields(
value):void
Gets or sets a value indicating whether the fields specified by the 'fields' list should be excluded for processing. By default this property is "false", which means that the fields in the list are processed. If this property is set to "true", the fields in the list are excluded from processing.
boolean
void
ActionFieldsBase.excludeSpecifiedFields
get fields(): (
string|Field)[] |null
Gets the list of fields that should be processed or excluded from processing (depending on the value of 'excludeSpecifiedFields') by this action. An item in this list can be either a field's name specified as a "string", or the Field object itself. An empty list means that all fields are included.
(string | Field)[] | null
set fields(
value):void
Gets the list of fields that should be processed or excluded from processing (depending on the value of 'excludeSpecifiedFields') by this action. An item in this list can be either a field's name specified as a "string", or the Field object itself. An empty list means that all fields are included.
(string | Field)[] | null
void
get id():
number
Gets the reference to the object.
number
get om():
ObjectManager
Gets the owner ObjectManager instance.
free():
void
Detaches the object from the ObjectManager and deallocates its memory, if possible.
void
rebind(
omTo):void
Rebinds the object from the current ObjectManager to the specified one.
The new ObjectManager for the object.
void