Returns the parameter value of a dynamic configuration, i.e., from a configuration that has been auto generated from a dynamic instance.
string DynConfigParameter(string productTitle; string instanceName; int instanceIndex; string parameterName)
| productTitle | The title of the product of the dynamic configuration. | 
| instanceName | The name of the dynamic instance driving the dynamic configuration. | 
| instanceIndex | The zero-based index of the dynamic configuration. Use zero for non-indexed instances. | 
| parameterName | The name of the parameter to read. | 
Example
DynConfigParameter("Wall block", "Wall 1", 3, "Width")
Returns the value of the parameter "Width" from the fourth dynamic "Wall block" configuration that is generated from the dynamic instance "Wall 1".
