AnalogNumeric Opacity iX RunTime

A forum devoted to the discussion of all topics having to do with scripting and other advanced programming using iX Developer.
Post Reply
Joe
Posts: 27
Joined: Tue Sep 18, 2012 4:53 am

AnalogNumeric Opacity iX RunTime

Post by Joe »

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

User avatar
Edmund
Posts: 92
Joined: Thu Nov 29, 2012 2:27 pm

Re: AnalogNumeric Opacity iX RunTime

Post by Edmund »

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

Code: Select all


m_AnalogNumeric1.Opacity = 0.1;

Opacity runs from 0 to 1.
Edmund Andersson

AITECH AB

Part of Beijer Integrator Group

Joe
Posts: 27
Joined: Tue Sep 18, 2012 4:53 am

Re: AnalogNumeric Opacity iX RunTime

Post by Joe »

Hi Edmund,

Thank you for your help ... works fine ... ;).

Regards

Joe

Post Reply