Scripting

 From:  Michael Gibson
7238.38 In reply to 7238.37 
Hi dune1982,

re: turning off history - there is a property on objects that controls whether they will be a part of history updates or not. You can set it manually by selecting the objects and running Edit > History > "Disable update" button.

You can set it through your script by changing the .updateWithHistory property that's available on an geometry database object.

If you have a single object, set: obj.updateWithHistory = false;

If you have an object list, use: objlist.setProperty( 'updateWithHistory', false );

That will then have the same effect as running Edit > History > "Disable update".

- Michael