tryGetPropertyValue

tryGetPropertyValue(name:   String;
                    exists: Boolean output): Any;

The tryGetPropertyValue method of the JadeDynamicObject class returns the value of the property specified in the name parameter if it exists.

If the property exists, the value is returned and the exists parameter is set to true. If the property does not exist, a null value is returned and the exists parameter is set to false.

The return result can be assigned to a variable of type Any or it can be converted to a specific primitive type or class if the type is known.

2020.0.01 and higher