| <className> | - Class name. Value should be "UIWindow". |
| <name> | - Window name defined in constructor. |
| <userSpace> | - Layout for widget placement. UIVBox object. |
| CHILDCLOSE | Close current child window. |
| CHILDCLOSEALL | Close all child windows. |
| CLOSE | Close window. |
| DIALOGBOX | Show dialog window with message. |
| GETGEOMETRY | Get size and position of window. |
| GETOBJ | Get object with filled fields from window widgets contents. |
| GETVALUES | Get array of values from window widgets. |
| ISCHANGED | Return true if any field in window was changed. |
| RETURN | Send value to window which initiated creation of this window. |
| SETCAPTION | Set new window caption. |
| SETDEFAULT | Set button as default in window. |
| SETFOCUS | Set focus to specified widget. |
| SETGEOMETRY | Change size and/or position of window. |
| SETICON | Set icon for the window. |
| SETID | Set object identifier changed in this window. |
| SETKEYEVENT | Set action to shortcut in the window. |
| SETMDI | Create area for child window placement. This method must be call after placement of menu. toolbar(s), statusbar and/or other fixed element(s) into window. |
| SETNAME | Set name for widget. |
| SETOBJ | Fill widgets by object fields. |
| SETPANELS | Attach to window menubar, toolbar and/or statusbar. |
| SETPLACEMENT | Set window at center of the screen. |
| SETVALUES | Fill widget values from array. |
| SHOW | Show window. |
| UNSETKEYEVENT | Unset action from shortcut in the window. |
| VAL | Get widget value by its name. |
dialogBox(<caption>,<text>,[<buttons>],[<buttonNames>],[<action>])
| <caption> | - String. Caption of dialog. |
| <text> | - String. Text of message. |
| <buttons> | - String. In the string defined array of buttons in message window. For example, "'&Save','&Cancel'". If parameter isn't defined, only one button 'OK' will be shown. |
| <buttonNames> | - String. In the string defined array of name for button. For example, "'SAVE','CANCEL'". |
| <action> | - Code block. Code block which is executed on any defined button on dialog window. As parameters of this call name of pressed button is used. |
| Returns : | NIL |
setPanels([<menu>],[<toolBar>],[<statusBar>])
| <menu> | - Object UIMenu. Menubar. |
| <toolBar> | - Object UIToolBar. Toolbar. |
| <statusBar> | - Object UIStatusBar. Statusbar. |
| Returns : | NIL |