C++
ACAD_PORT void acedUpdateDisplayPause( bool bEnable );
File
aced.h
Description
This function allows an application to turn off display updates in order to hide automated tasks from the user. All documents are affected by this call. This call should not be enabled if any kind of drawing area input is expected from the user. The restrictions on what can be done in this paused state are the same as they would be if the display was not paused.
Callers of this function should first save the return value from acedIsUpdateDisplayPaused(), then restore that value when finished pausing the display.
Parameters
Parameters | Description |
---|---|
bEnable | Input value that when set to true, disables further display updates; when set to false, display updates are re-enabled |
Previous Declaration
void acedUpdateDisplayPause (bool bEnable);
History
AutoCAD 2022
Declaration of the method changed.