10-04-2021 05:04 AM
Hi everyone,
is it possible to access a LabView class property directly in a TestStand Expression?
F.e. I have a Timer.class in Labview from wich I read a status with a Property Node Call:
Can I somehow access it like a Container "Locals.TimerClass.T_UsermenuTimeout" ?
Thank you for any ideas
10-04-2021 07:32 AM
No. That would violate the encapsulation principle of objects. You need to call a method of the object in order to get private data out.
10-04-2021 08:02 AM
ok, calling a method would be fine, too. But I guess I can't call a LabView method in an expression either?