|  | 
Action as Variant | 
[optional] A long expression that specifies the action being remove. If missing
or -1, all actions are removed. 
 The Action parameter can be one of the following: 
  
    -  exUndoRedoAddElement(13) ~ "AddElement;ELEMENTID", indicates that a new element has
      been created
 
    -  exUndoRedoRemoveElement(14) ~ "RemoveElement;ELEMENTID", indicates that an element has
      been removed
 
    -  exUndoRedoMoveElement(15) ~ "MoveElement;ELEMENTID", indicates that an element has been
      moved or resized
 
    -  exUndoRedoUpdateElement(16) ~ "UpdateElement;ELEMENTID", indicates that one or more
      properties of the element has been updated, using the StartUpdateElement
      / EndUpdateElement methods
 
    -  exUndoRedoAddLink(10) ~ "AddLink;LINKID", indicates that a new link has been
      created
 
    -  exUndoRedoRemoveLink(11) ~ "RemoveLink;LINKID", indicates that a link has been removed
 
    -  exUndoRedoUpdateLink(12) ~ "UpdateLink;LINKID", specifies that one of more
      properties of the link has been updated, using the StartUpdateLink
      / EndUpdateLink methods
 
    -  exUndoRedoAddPool(20) ~ "AddPool;POOLID", indicates that a new
      pool has
      been created
 
    -  exUndoRedoRemovePool(21) ~ "RemovePool;POOLID", indicates that a
      pool has
      been removed
 
    -  exUndoRedoMovePool(22) ~ "MovePool;POOLID", indicates that a
      pool has been
      moved or resized
 
    -  exUndoRedoUpdatePool(23) ~ "UpdatePool;POOLTID", indicates that one or more
      properties of the pool has been updated, using the StartUpdatePool
      / EndUpdatePool methods
 
   
 For instance, RedoRemoveAction(12) removes only AddElement actions from the
redo stack. 
 |  |