| PROPLIST.GetWindow |     | 
| 
 value = PROPLIST.GetWindow( [nItem AS INTEGER = PL_WIN_HANDLE] ) AS VALUE 
 
 Returns the Window Handle or specified item/property of the window such as position and size. 
 The nItem can be one of the following constants defined in "MyBASIC2_PropListLib.bis" 
 CONST PL_Win_Handle = 1 CONST PL_Win_Pos = 2 CONST PL_Win_Size = 3 CONST PL_Win_Flags = 4 
 Example: 
 nWinPos = PROPLIST.GetWindow( PL_WIN_POS ) |