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