Indicates if display object suppresses events.
[Visual Basic 6.0] Property SuppressEvents As Boolean
[Visual Basic .NET] Public Property SuppressEvents As Boolean
[C#] public bool SuppressEvents {get; set;}
[Java] public getSuppressEvents ( boolean SuppressEvents )
[Java] public void setSuppressEvents( boolean SuppressEvents ) throws IOException, AutomationException
[C++]
HRESULT get_SuppressEvents(
VARIANT_BOOL* SuppressEvents
);
[C++] HRESULT put_SuppressEvents( VARIANT_BOOL SuppressEvents);
Parameters
SuppressEvents [out, retval]
SuppressEvents is a parameter of type VARIANT_BOOL
SuppressEvents [in]
SuppressEvents is a parameter of type VARIANT_BOOL
For example, IScreenDisplay::StartDrawing sets SuppressEvents to TRUE and FinishDrawing sets it back to FALSE, this prevents all transform events from firing during the drawing.
SuppressEvents is set to FALSE by default.