Check if LateBoundPropertyRef function has executed
I have a Graphic Element that shows different information depening on if a Property/Aspect of the Program (Parent Object) exists, that is found via Late binding.
This works well, but always on loading the element for some short time the default value (aspect does not exist case) is shown, even when the Property is found later, and i cannot find the proper way to delay this indication.
I understand from the manual that the result of the LateBoundPropertyRef Function is both null before it has executed and if the Property does not exist, but is there any way to check if the Function has already executed, so that i know the Aspect really does not exist, or another Function that works in this way?
This works well, but always on loading the element for some short time the default value (aspect does not exist case) is shown, even when the Property is found later, and i cannot find the proper way to delay this indication.
I understand from the manual that the result of the LateBoundPropertyRef Function is both null before it has executed and if the Property does not exist, but is there any way to check if the Function has already executed, so that i know the Aspect really does not exist, or another Function that works in this way?
Answers
Look for LateBoundPropertyRef()#IsConnected or something like this
What I do is checking if the object name is at least 6 characters, then I now I found something. e.g.
YourLateBoundItem#object#presentationname#length > 5
YourLateBoundItem#object#presentationname#length > 5
Add new comment