2.2.4.31.4 OperationManager::IsAutoUpdate
Contents
Description
Check if the Operation Manager is Auto Update.
Syntax
BOOL IsAutoUpdate();
Parameters
Return
TRUE if OperationManager is Auto update, FALSE otherwise.
Examples
//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!"); }
Remark
See Also
OperationManager::SetAutoUpdate
Header to Include
origin.h