bdeSaveEditorFileAs
Saves the editor to a given filepath.
Syntax
bdeSaveEditorFileAs(editor, filepath)
Inputs
- editor
 - The editor to save to the filepath.
 - filepath
 - The filepath to save the editor to.
 
Examples
          widget = bdeGetTopLevelWidget();
          textEditorDialog = bdeCreateEditor(widget, true, 1, false, true);
          bdeSaveEditorFileAs(textEditorDialog, 'C:\Users\user\Desktop\textEditor.oml');