bdeShowTextEditor

Shows the editor in the ui.

Syntax

bdeShowTextEditor(editor, name, x, y)

Inputs

editor
The editor to show in the ui.
Type: hwscpTextEditorDialog
name
The name of the dialog box that the editor is in.
Type: string
x
The length of the x-axis for the dialog box.
Type: double
y
The height of the y-axis for the dialog box.
Type: double

Examples

Shows a text editor in the user interface:

          widget = bdeGetTopLevelWidget();
          textEditorDialog = bdeCreateEditor(widget, true, 1, false, true);
          bdeShowTextEditor(textEditorDialog, 'Text Editor', 500, 500);