Temporarily suspend incoming dynamic updates.
Comments
When the viewer is showing the user modal dialogs like property sheets for setup parameters, dynamic updates should be suspended.
Syntax
ResumeDynamic(COR_STATUS *ret_stat);
Data Type
void
Example
Suspend dynamic updates while changing setups.
if (IsStatic()) {
EditSetups()
else
amvConn->SuspendDynamic();
EditSetups();
amvConn->ResumeDynamic();
}
See Also
CAmvConn class member overview. |