GetSecondaryIDOCollection method (WinStudio scripts)
Applies To
IWSForm interface, forms with secondary IDO collections
Definition
Returns a Visual Basic object that references the specified secondary IDO collection.
Syntax
varObject = object.GetSecondaryIDOCollection( integer )
Part | Description |
varObject | Required. A Visual Basic variable that is defined as an object and that references the secondary IDO collection object being returned. |
object | Required. Reference to a valid form object. |
integer | Required. The index number of the secondary IDO collection. |
Example
Sub Main() Dim oSecColCache As IWSIDOCollection oSecColCache = ThisForm.GetSecondaryIDOCollection(2) Application.ShowMessage(oSecColCache.IsEOF.ToString()) End Sub