Returns a property value from the product of current configuration. Properties of reference type can be followed to instead return a property of the referenced object. If no matching property is found, then an empty string is returned.
string ProductF(string format; string propertyName; [string propertyName2]; ...)
format |
Format specifiers to apply when converting the property to string. Search Microsoft's documentation about "format strings". |
propertyName |
The name of a property to read. |
propertyName2 |
Optional name of a property to read from an object that is referenced by the first property. |
Example
ProductF("yyyy-MM-dd"; "EffectiveUntil")
Returns the effective until date in a format like "2024-12-31" of current configuration's product.