SaveCurrent method (WinStudio scripts)

Applies To

IWSIDOCollection interface

Definition

Saves the current object in a collection, and returns a Boolean value indicating whether the object was saved successfully.

Syntax

object.SaveCurrent( )

  Part   Description
object Required. A reference to a valid IDO collection object.

Remarks

A return value of:

  • TRUE indicates that the current object was saved successfully.
  • FALSE indicates that the object was not saved successfully.

Example

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