Model.hm_getredoactions#

Model.hm_getredoactions()#

Returns the history actions on the redo list.

Returns:

Example#

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

model = hm.Model()

_, result = model.hm_getredoactions()

print("History actions on the redo list:", result.redoActions)