IsInCompositeApp (NotesUIWorkspace - LotusScript®)

Read-only. Indicates whether the component is running within a composite application.

Note: This @function is new in release 8.0.1

Defined in

NotesUIWorkspace

Data type

Boolean

Syntax

To get: flag = notesUIWorkspace .IsInCompositeApp

Return value

flag

  • True indicates that the component is running within a composite application.
  • False indicates that the component is not running within a composite application.

Usage

  • The IsInCompositeApp property indicates if the current element is a component in a composite application, while the IsEmbeddedInsideWCT property indicates if composite applications are available, whether or not they are being used. If IsInCompositeApp is true, IsEmbeddedInsideWCT must be true. If IsEmbeddedInsideWCT is false, IsInCompositeApp must be false.
  • The IsInCompositeApp property indicates if the current element is a component in a composite application, while the IsUsingJavaElement property indicates if the current component in a composite application is a Java-based view or outline. If IsUsingJavaElement is true, IsInCompositeApp must be true. If IsInCompositeApp is false, IsUsingJavaElement must be false.

Example