This element contains a list of objects that should be saved when the application quits, or when the user interface is closed. Multiple instances of this element are allowed: any new object identifier will be added to the list of objects to be saved.
This element supersedes the deprecated PERSISTENT_PARAMS element.
None.
Name | Value Type | Default Value | Description | Comment | V. | Exp. |
---|---|---|---|---|---|---|
object_ids |
';' separated identifiers |
Empty. |
List of identifiers of objects to be declared as persistent. |
|
1.2 |
No |
The following example creates a single parameter handling the gain of the plug-in, and declares it as persistent, so that it will be saved when the application quits, or when the user interface is closed:
<?xml version="1.0" encoding="utf-8" ?> <SKIN language_version="1.1"> <PARAM name="gain" default="0" max="20" min="-20" unit="dB" comment="gain of the plug-in" /> <PERSISTENT_OBJECTS object_ids="gain" /> </SKIN>