![]() |
v2.40
|
|
This class contains functions to edit a Renga project. More...
Public Member Functions | |
HRESULT | Apply () |
Commits the changes made to objects. | |
HRESULT | Rollback () |
Discards any changes made to objects since the operation started. | |
HRESULT | Start () |
Starts an operation. | |
This class contains functions to edit a Renga project.
Use this class to edit a Renga project.
Changes are applied to the project only if the operation was started beforehand. A new operation cannot be started while there is an active operation in progress. (An active operation is an operation that has been started but has not been applied or rolled back yet). See IProject::HasActiveOperation.
When an operation is applied, all changes made to the project since the operation started get accepted. Each applied operation pushes a new record into Renga's undo queue, it allows the user to revert the changes.
This interface can be obtained through IProject::CreateOperation.
HRESULT Apply | ( | ) |
Commits the changes made to objects.
Only active opertaions can be applied.
HRESULT Rollback | ( | ) |
Discards any changes made to objects since the operation started.
It is impossible to roll the changes back after the operation is applied.
HRESULT Start | ( | ) |
Starts an operation.
You should start an operation before modifying any model objects.