| activateWindow (window) |
Makes the specified window the active window,
and updates the consoleLib activeWindow variable. |
| activateWindowByName (name) |
Makes the specified window the active window,
and updates the consoleLib activeWindow variable. |
| cancelArrayDelete () |
Interrupts a delete operation in progress during
a BEFORE_DELETE openUI event code block. |
| cancelArrayInsert () |
Interrupts an insert operation in progress during
a BEFORE_INSERT openUI event code block. |
| clearActiveForm () |
Clears the display buffers of the all of the
fields. |
| clearActiveWindow () |
Removes all displayed material from the active
window. |
| clearFields ([consoleField{, consoleField}]) |
Clears the display buffers of the specified
fields in the active form. If no fields are specified, all fields
of the form are cleared. |
| clearFieldsByName (fieldName{, fieldName}) |
Clears the display buffers of the named fields
in the active form. If no fields are named, all fields of the form
are cleared. |
| clearForm (consoleForm) |
Clears the display buffers of the all of the
fields. |
| clearWindow (window) |
Removes all displayed material from the specified
window. |
| clearWindowByName (name) |
Removes all displayed material from the specified
window. |
| closeActiveWindow () |
Clears the window from the screen, releases
the resources associated with that window, and activates the previous
active window. |
| closeWindow (window) |
Clears the window from the screen, releases
the resources associated with that window, and activates the previous
active window. |
| closeWindowByName (name) |
Clears the window from the screen, releases
the resources associated with that window, and activates the previous
active window |
| result = currentArrayCount () |
Returns the number of elements in the dynamic
array that is associated with the current active form |
| result = currentArrayDataLine () |
Returns the number of the program record within
the program array that is displayed in the current line of a screen
array during or immediately after the openUI statement. |
| result = currentArrayScreenLine () |
Returns the number of the current screen record
in its screen array during an openUI statement. |
| displayAtLine (text,
line) |
Displays a string to a specified place within
the active window. |
| displayAtPosition (text,
line, column) |
Displays a string to a specified place within
the active window. |
| displayError (msg) |
Causes the error window to be created and shown
and displays the error message in that window. |
| displayFields
([consoleField{, consoleField}]) |
Displays form field values to the Console. |
| displayFieldsByName (consoleFieldName{, consoleFieldName}) |
Displays form field values to the Console. |
| displayForm (consoleForm) |
Displays the form to the active window. |
| displayFormByName (formName) |
Displays the form to the active window. |
| displayLineMode (text) |
Displays a string in line mode rather than form/window
mode. |
| displayMessage (msg) |
Displays a string to a specified place within
the active window and uses the messageLine property
of the active window to identify where to display the string. |
| drawBox (row,
column, depth, width) |
Draws a rectangle in the active window with
the specified location and dimensions. |
| drawBoxWithColor (row,
column, depth, width, color) |
Draws a rectangle in the active window with
the specified location, dimensions, and color. |
| result = getKey () |
Reads a key from the input and returns the integer
code for the key. |
| result = getKeyCode (keyName) |
Returns the key integer code of the named key
in the String. |
| result = getKeyName (keyCode) |
Returns the name that represents the integer
key code. |
| gotoField (consoleField) |
Moves the cursor to the specified form field. |
| gotoFieldByName (name) |
Moves the cursor to the specified form field. |
| gotoMenuItem (item) |
Moves the menu cursor to the specified menu
item. |
| gotoMenuItemByName (name) |
Moves the menu cursor to the specified menu
item. |
| hideAllMenuItems () |
Hides all menu items in the currently displayed
menu. |
| hideErrorWindow () |
Hides the error window. |
| hideMenuItem (item) |
Hides a specified menu item so that a user cannot
select it. |
| hideMenuItemByName (name) |
Hides a specified menu item so that a user cannot
select it. |
| result = isCurrentField (consoleField) |
Returns YES if the cursor is in the specified
form field. |
| result = isCurrentFieldByName (name) |
Returns YES if the cursor is in the specified
form field. |
| result = isFieldModified (consoleField) |
Returns YES if the user changed the contents
of the specified form field. |
| result = isFieldModifiedByName (name) |
Returns YES if the user changed the contents
of the specified form field. |
| result = lastKeyTyped () |
Returns the integer code of the last physical
key that was pressed on the keyboard. |
| nextField () |
Moves the cursor to the next form field according
to the defined field travel order. |
| result = openFileDialog (currentFile) |
Opens a dialog prompting the user to select
a file from disk. |
| openWindow (window) |
Makes a window visible and adds it to the top
of the window stack. The form is displayed in the window. |
| openWindowByName (name) |
Makes a window visible and adds it to the top
of the window stack. |
| openWindowWithForm
(window, form) |
Makes a window visible and adds it to the top
of the window stack. The Window size changes to hold the specified
form if the window size was not defined when the window was declared. |
| openWindowWithFormByName (windowName,
formName) |
Makes a window visible and adds it to the top
of the window stack. |
| previousField () |
Moves the cursor to the previous form field
according to the defined field travel order. |
| result = promptLineMode (prompt) |
Displays a prompt message to the user in a line
mode environment. |
| scrollDownLines (numLines) |
Scrolls the displayed data toward the bottom
of the screen by the specified number of lines. |
| scrollDownPage () |
Scrolls the displayed data one page toward the
bottom of the screen. |
| scrollUpLines (numLines) |
Scrolls the displayed data toward the top of
the screen by the specified number of lines. |
| scrollUpPage () |
Scrolls the displayed data one page toward the
top of the screen. |
| setArrayLine (recordNumber) |
Moves the selection to the specified program
record. The data table is scrolled in the display if necessary to
make the selected record visible. |
| setCurrentArrayCount (count ) |
Sets how many records exist in the program array.
Must be called prior to the openUI statement. |
| showAllMenuItems () |
Shows the all menu items for user selection. |
| showHelp (helpkey) |
Displays a Console UI help screen during the
processing of the EGL program. |
| showMenuItem (item) |
Shows the specified menu item for user selection. |
| showMenuItemByName(name) |
Shows the specified menu item for user selection. |
| updateWindowAttributes(attribute {, attribute}) |
Updates one or more attributes of the currently
active window. |