Changing/Adding Section Parameters

Changing or adding section parameters is one of the most common operations you might want to perform on a section. Section parameters are stored in a field called com.escenic.sectionParameters.

The parameters you specify in a com.escenic.sectionParameters field must be correctly formatted. Each parameter must have the form

name = value

and must appear on a separate line. For more detailed information about what is allowed, check the Javadoc for the class java.util.Properties. Here is an example com.escenic.sectionParameters field containing the parameter settings foo=bar and bar=foo:

<vdf:field name="com.escenic.sectionParameters">
  <vdf:value>
foo=bar
bar=foo
  </vdf:value>
</vdf:field>