Reputation: 29
I'm trying to write some CAPL code to be able to hide an LED when a user presses on a button in my CANoe panel. How can I call on the LED control name and change "Is visible at Runtime" to false?
Upvotes: 1
Views: 1957
Reputation: 123
For CAPL, there is a function void enableControl(char panel[], char control[], long enable);
.
For C# there is a COM Property Visible
.
Please check Vector Help Guide for references on how to use them.
Upvotes: 1