Save method (WinStudio scripts)
Applies To
IWSIDOCollection interface
Definition
Saves a specified IDO collection and returns a Boolean value indicating whether the Save operation was successful.
Syntax
object.Save( )
Part | Description |
object | Required. A reference to a valid IDO collection object. |
Remarks
A return value of:
- TRUE indicates that the collection was saved successfully.
- FALSE indicates that the collection not saved successfully.
Example
Sub Main() Dim bValue As Boolean bValue = ThisForm.PrimaryIDOCollection.Save() End Sub