Model.hm_getundoactions#

Model.hm_getundoactions()#

Returns the history actions on the undo list.

Returns:

Example#

Get the history actions on the undo list#
import hm
import hm.entities as ent

model = hm.Model()

_, result = model.hm_getundoactions()

print("undoActions:", result.undoActions)