WinStudio

IsLinkedChild Property

Applies To

IWSForm interface

Definition

Returns a Boolean value indicating whether a form is a child form linked to a parent form. Read-only.

Syntax

object.IsLinkedChild

  Part

  Description

object Required. A reference to a valid form object.

Remarks

A return value of:

Example

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