IsModalFindChild property (WinStudio scripts)
Applies To
IWSForm interface
Definition
Returns a Boolean value indicating whether the current form is a modal child find form. Read-only.
Syntax
object.GetIsModalFindChild
Part | Description |
object | Required. A reference to a valid form object. |
Remarks
An example of a modal child find form is the query form that is displayed when a user right-clicks in a component and selects the Find command. The user uses the modal child find form to issue a query and find a value for the component. Usually, the user selects a value from the results of the query to be used as the value for the component on the parent form.
A return value of:
- TRUE indicates that the form is a modal child find form.
- FALSE indicates that the form is not a modal child find form.
Example
Sub Main() Application.ShowMessage(ThisForm.IsModalFindChild.ToString) End Sub