Hi, I have an ObjectValue and the value of it is a model. How would I get the objectvalue directly from the model. So, instead of ObjectValue.Value, it would be Model.ObjectValue. Thank you!
1 Like
Impossible without a search. Depending where the objectvalue is you need to iterate through all children/descendants of that place and check if each object is an objectvalue, if yes, if it’s value is your model.
1 Like
I’ve fixed the problem by myself with another way but thank you.