Opens the Model Cache and assigns it to the action so that any edit to the action is applied to the model. Must call EndEditWithModelCache (HModel *hm) when the edit is completed.
Assuming that you have this model set up with an action or relationship. You should have the ModelCache and ActionCache. Then you will call:
HModel *hm = hactioncache->EditWithModelCache(hmodelcache);
Then you can add your code that edits the action. And then finish with:
hactioncache->EndEditWithModelCache(hm);
- Parameters:
-
|
hmc |
- The model cache onto which the action must be applied. |
|