An immutable group of changes that can be undone or redone as one unit.

interface AcDbUndoRecord {
    changes: AcDbDatabaseChange[];
    label?: string;
}

Properties

Properties

Forward changes applied by the original operation.

label?: string

Optional label for UI display (for example, "Move", "Delete").