_Application.ScreenUpdating Property

Definition

True if screen updating is turned on.

public:
 property bool ScreenUpdating { bool get(); void set(bool value); };
public bool ScreenUpdating { get; set; }
Public Property ScreenUpdating As Boolean

Property Value

Remarks

Turn screen updating off to speed up your code. You won't be able to see what the code is doing, but it will run faster.

Remember to set the ScreenUpdating property back to True when your code ends.

Applies to