4D v14.3

Open external window

Home

 
4D v14.3
Open external window

Open external window 


 

Open external window ( left ; top ; right ; bottom ; type ; title ; plugInArea ) -> Function result 
Parameter Type   Description
left  Longint in Global left coordinate of window contents area
top  Longint in Global top coordinate of window contents area
right  Longint in Global right coordinate of window contents area
bottom  Longint in Global bottom coordinate of window contents area
type  Longint in Window type
title  String in Title of window
plugInArea  String in External area command
Function result  WinRef in Reference number for window and external area

Open external window opens a new window and displays the external area supported by the command plugInArea provided by a 4D plug-in. The code passed in plugInArea is generally in the form "_PluginName", for example: _4D Write, _4D View.

Open external window returns a Long Integer value that can be used both as a window reference number (that can be used with other Windows theme commands) and as a reference to the external area displayed in the window (that can be used with other routines provided by the 4D plug-in).

The first six arguments are the same as those of the the Open window command. However, none of the parameters are optional.

Open external window creates modeless windows. The command does not wait for user input, so you can have several active windows open at once. You can click between each window and edit the one in front. If the window type has a title bar, a Control-menu box (Windows) or a Close Box (Macintosh) will be added to enable the user to close the window.

Example  

The following example opens an external window and displays the 4D Write external area:

 wrWind:=Open external window(50;50;350;450;8;"Letter Writing";"_4D WRITE")

The following example closes the external window opened in the previous example:

 CLOSE WINDOW(wrWind)

 
PROPERTIES 

Product: 4D
Theme: Windows
Number: 309

Not for server

 
HISTORY 

Modified: 4D v6

 
SEE ALSO 

CLOSE WINDOW
Open window
Window Types

 
ARTICLE USAGE

4D Language Reference ( 4D v11 SQL Release 6)
4D Language Reference ( 4D v12.4)
4D Language Reference ( 4D v14 R2)
4D Language Reference ( 4D v14 R3)
4D Language Reference ( 4D v13.5)
4D Language Reference ( 4D v14.3)
4D Language Reference ( 4D v14 R4)