IsAutoUpdate
Check if the Operation Manager is Auto Update.
BOOL IsAutoUpdate();
TRUE if OperationManager is Auto update, FALSE otherwise.
//After run the function below, do some analysis operation, can see the recalculate button is gray. void OperationManager_IsAutoUpdate_Ex1() { OperationManager opManager; opManager = Project.Operations; bool bRet; opManager.SetAutoUpdate(FALSE); bRet = opManager.IsAutoUpdate(); if(bRet) out_str("Recalculate is enable!"); else out_str("Recalculate is disable!"); }
OperationManager::SetAutoUpdate
origin.h