WinStudio
IWSFormComponent interface, grid objects
Enables a grid component to be painted.
object.UnlockGridUpdate( )
Part |
Description |
object | Required. A reference to a grid component object. |
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.
Sub Main() ThisForm.Components("grid1").UnlockGridUpdate() End Sub