bdeDestroyTextEditor

Deletes a given textEditor.

Syntax

bdeDestroyTextEditor(textEditor)

Inputs

textEditor
The text editor to delete.
Type: hwscpTextEditorDialog

Examples

Destroy a text editor:

          widget = bdeGetTopLevelWidget();
          textEditorDialog = bdeCreateEditor(widget, true, 1, false, true);
          bdeDestroyTextEditor(textEditorDialog);