mgr1134
mgr1134

Reputation: 29

Referencing LED Visibility using CAPL program?

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

Answers (1)

Tomasz Krawczyk
Tomasz Krawczyk

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

Related Questions