WinStudio
IWSForm interface
Returns a Boolean value indicating whether a form is a child form linked to a parent form. Read-only.
object.IsLinkedChild
Part |
Description |
object | Required. A reference to a valid form object. |
A return value of:
Sub Main() ' Display a message box containing "True" ' if this form is a linked child or "False" if it isn't. Application.ShowMessage(ThisForm.IsLinkedChild.ToString) End Sub