IsLinkedChild property (WinStudio scripts)

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:

  • TRUE indicates that the form is a linked child form.
  • FALSE indicates that the form is not a linked child form.

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