| <className> | - Class name. Value should be "UIChildWindow". |
| <name> | - Window name defined in constructor. |
| <userSpace> | - Layout for widget placement. UIVBox object. |
| ADD | Add widget to child window from top to bottom. |
| ADDEND | Add widget to child window from bottom to top. |
| CLOSE | Close child window. |
| DIALOGBOX | Show dialog window with message. |
| 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 child window caption. |
| SETFOCUS | Set focus to specified widget. |
| SETID | Set object identifier changed in this window. |
| SETNAME | Set name for widget. |
| SETOBJ | Fill widgets by object fields. |
| SETPANELS | Attach to window menubar, toolbar and/or statusbar. |
| SETVALUES | Fill widget values from array. |
| SHOW | Show 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 |