Go to AVS Home Page
 Recent Releases
OpenViz 2.8 Released
AVS/Express 7.2 Released
Toolmaster 7.5.3 Released
AVS 5.7 Released
 Contact Support
 Licensing
Information on licensing AVS 
products
 
Interact with the AVS Developer 
community. Takes you out of 
the support web site

 


Q. How do I remove a property, such as a user defined property, which cannot be accessed through the Propeties Editor?

A. Set it to nothing, for example:

OM(SingleWindowApp)-> a<myProp=6>; 
OM(SingleWindowApp)-> $print a int a<myProp=6> = 3; 
OM(SingleWindowApp)-> a<myProp= >; 
OM(SingleWindowApp)-> $print a int a = 3;

Be sure to include the space after the equal sign.