WinStudio
IWSIDOCollection interface, child forms
Returns a Boolean value indicating whether an object property in a specified IDO collection object is one of the properties specified in the LINKBY keyword in WinStudio.
object.IsPropertyLinkBy( string )
Part |
Description |
object | Required. A reference to a valid IDO collection object that is a child form. |
string | Required. The name of the object property. |
In WinStudio, you use the LINKBY keyword to connect parent and child forms. Use this method in a script that is attached to a linked child form.
A return value of:
Dim bIsLinkBy As Boolean If ThisForm.PrimaryIDOCollection.IsPropertyLinkBy("AccountNo") Then bIsLinkBy = TRUE End If