Gimp.Procedure.add_aux_argument

@accepts(Gimp.Procedure, GObject.ParamSpec)
@returns(GObject.ParamSpec)
def add_aux_argument(self, pspec):
    # Python wrapper for gimp_procedure_add_aux_argument()
  

Add a new auxiliary argument to self according to pspec specifications.

Auxiliary arguments are not passed to the self in run() and are not known to the PDB. They are however members of the Gimp.ProcedureConfig created by Gimp.Procedure.create_config and can be used to persistently store whatever last used values the self wants to remember across invocations

Since 3.0

self

the Gimp.Procedure.

pspec

the argument specification.

Returns