Hi,
It is possible set opacity analognumeric block or picture in script?
AnalogNumeric1.Opacity = 50; -> this is not right way ... Is there another way?
Thanks for reply
Joe
AnalogNumeric Opacity iX RunTime
Re: AnalogNumeric Opacity iX RunTime
Hi Joe!
If you are targeting PC for your iX-application try to access the real object by calling it with the prefix "m_".
Like
Opacity runs from 0 to 1.
If you are targeting PC for your iX-application try to access the real object by calling it with the prefix "m_".
Like
Code: Select all
m_AnalogNumeric1.Opacity = 0.1;
Re: AnalogNumeric Opacity iX RunTime
Hi Edmund,
Thank you for your help ... works fine ... .
Regards
Joe
Thank you for your help ... works fine ... .
Regards
Joe