spturano 发表于 2022-7-8 10:03:18

Array maximum override?

Is there a way to change the maximum number of objects I can create with an array in ACAD 2010?The maximum is set at 100,000 object (I need a 450 by 450 array ~202,500 objects).I can obviously get around this in other ways, but it gets to be tedious.
 
I recall that this could be done in an older version of LT (using getenv and setenv commands), but I don't know about 2010.Any help is greatly appreciated.

Lee Mac 发表于 2022-7-8 11:11:29

I believe its stored in the registry, under MaxArray,
 
hence you can get at it using:
 

(getenv "MaxArray")
 
And Set it using:
 

(setenv "MaxArray" "100000")
页: [1]
查看完整版本: Array maximum override?