Event arguments for system variable related events.

interface AcDbSysVarEventArgs {
    name: string;
    newVal: AcDbSysVarType;
    oldVal?: AcDbSysVarType;
}

Properties

Properties

name: string

The system variable name

The new value of system variable

The old value of system variable