NX Block Styler
NX Block Styler
(OP)
Hi Everyone!!
Could anyone help me resetting the values of block styler (Type Double) to zero. I know the code for resetting
values has to be written under void Projectname::dialogShown_cb()
Basically I want to know how to use setdouble.
Please help.
Could anyone help me resetting the values of block styler (Type Double) to zero. I know the code for resetting
values has to be written under void Projectname::dialogShown_cb()
Basically I want to know how to use setdouble.
Please help.





RE: NX Block Styler
CODE --> Java
nxopen.blockstyler.DoubleBlock db; ... PropertyList pl = db.getProperties(); pl.setDouble("Value", 123.4); pl.dispose();CODE --> Java
Hope this helps.
RE: NX Block Styler