SetVariable Method

Sets the value of an AutoCAD system variable.

See Also | Example

Signature

object.SetVariable Name, Value

Object

Document
The object or objects this method applies to.

Name

String; input-only
The name of the system variable to set.

Value

Variant; input-only
The new value for the specified system variable.

Remarks

When setting system variables, AutoCAD may require integers, text, or double values. Passing the wrong data type (for example, passing a variant of type double when an integer is required) will generate an error. The easiest way to avoid this is to use one of the Cxxx functions, such as CInt(), to explicitly type your data before passing it.

For a list of all AutoCAD system variables and their types, please refer to "System Variables" in the AutoCAD Command Reference.

 

   Comments?