It looks like you're new here. If you want to get involved, click one of these buttons!
Hi,
You might be interested in the Manager class which is documented here.
Manager
Regards, Chris
Hi Chris,
thanks very much for the comments!
I just like to add that usually you won't need the manager object. The LayoutView#commit and LayoutView#transaction methods are usually sufficient:
# Begins the transaction (undo/redo support) view.transaction("Description of your function") begin # your code goes here and will be undo/redo-tracked ensure # Always commit (also in case of an exception) view.commit end
Matthias
Comments
Hi,
You might be interested in the
Manager
class which is documented here.Regards, Chris
Hi Chris,
thanks very much for the comments!
I just like to add that usually you won't need the manager object. The LayoutView#commit and LayoutView#transaction methods are usually sufficient:
Matthias