Model.hm_getredoactions#
- Model.hm_getredoactions()#
Returns the history actions on the redo list.
- Returns:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:redoActions (list of strings)
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)