Returns a property value of a dynamic configuration, i.e., from a configuration that has been auto generated from a dynamic instance.
string DynConfigProperty(string productTitle; string instanceName; int instanceIndex; string propertyName; [string propertyName2]; ...)
| productTitle | Title of the product of the dynamic configuration. | 
| instanceName | Name of the dynamic instance driving the dynamic configuration. | 
| instanceIndex | Zero-based index of the dynamic configuration. Use zero for non-indexed instances. | 
| propertyName | Name of the property to read. | 
| propertyName2 | Optional name of a property to read from an object that is referenced by the first property. | 
Example
DynConfigProperty("Wall block", "Wall 1", 3, "Identity")
Returns the value of the property "Identity" from the fourth dynamic "Wall block" configuration that is generated from the dynamic instance "Wall 1".
