bdeSaveEditorFileAs

Saves the editor to a given filepath.

Syntax

bdeSaveEditorFileAs(editor, filepath)

Inputs

editor
The editor to save to the filepath.
Type: hwscpTextEditorDialog
filepath
The filepath to save the editor to.
Type: string

Examples

Save an editor to a filepath:

          widget = bdeGetTopLevelWidget();
          textEditorDialog = bdeCreateEditor(widget, true, 1, false, true);
          bdeSaveEditorFileAs(textEditorDialog, 'C:\Users\user\Desktop\textEditor.oml');