Returns the property value of the child configuration at specified index. Properties of reference type can be followed to instead return a property of the referenced object. If no matching child or property is found, then an empty string is returned.
string ChildProperty(int index; string propertyName; [string propertyName2]; ...)
index |
Zero-based index of the child configuration to read the property from. |
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
ChildProperty(2; "ProductId"; "Title")
Returns the title of the product that is referenced by the third child configuration.