bdeShowTextEditor
Shows the editor in the ui.
Syntax
bdeShowTextEditor(editor, name, x, y)
Inputs
- editor
- The editor to show in the ui.
- name
- The name of the dialog box that the editor is in.
- x
- The length of the x-axis for the dialog box.
- y
- The height of the y-axis for the dialog box.
Examples
widget = bdeGetTopLevelWidget();
textEditorDialog = bdeCreateEditor(widget, true, 1, false, true);
bdeShowTextEditor(textEditorDialog, 'Text Editor', 500, 500);