UnlockGridUpdate method (WinStudio scripts)

Applies To

IWSFormComponent interface, grid objects

Definition

Enables a grid component to be painted.

Syntax

object.UnlockGridUpdate( )

Part Description
object Required. A reference to a grid component object.

Remarks

The processing of painting messages can slow performance when a large number of data updates is underway. Grid painting can be turned off with the LockGridUpdate method and turned back on with this method.

Example

Sub Main()
   ThisForm.Components("grid1").UnlockGridUpdate()
End Sub