DisableComponentUpdates method (WinStudio scripts)

Applies To

IWSIDOCollection interface

Definition

Disables component updates for all bound grid column components in a specified IDO collection object.

Syntax

object.DisableComponentUpdates( )

  Part   Description
object Required. A reference to an IDO collection object.

Remarks

Before this method is executed, it returns a Boolean value indicating the prior status of bound grid component updates:

  • TRUE indicates that component updates were previously enabled.
  • FALSE indicates that component updates were previously disabled.

Example

Sub Main()
   ThisForm.PrimaryIDOCollection.DisableComponentUpdates()
End Sub