Event arguments for system variable related events.

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

Properties

database: AcDbDatabase

The database that triggered the event

name: string

The system variable name

The new value of system variable

The old value of system variable