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