Class: DuFileSelector

DuFileSelector

For use with DuScriptUI.
A "Browse" button for files only, with an optional text field for the path.
This is not a real class, and cannot be instanciated.
Use DuScriptUI.fileSelector to create a selector.
The DuFileSelector inherits the Group object from ScriptUI and has all of its properties and methods.

new DuFileSelector()

D:/DEV_SRC/RxOT/DuPSF/tools/output/DuPSF.jsxinc, line 10993
Properties:
Name Type Description
path string The file path, initialized with an empty string. Note that this may not point to an existing folder if the user entered an incorrect path in the text field.
To be sure to get an existing file, you can use the getFile() method.
editText DuEditText | null The text field, if any.
button DuButton The "Browse" button.
onChange DuFileSelector~onChange A function called when the file has changed.

Methods

staticDuFileSelector.getFile(){File|null}

D:/DEV_SRC/RxOT/DuPSF/tools/output/DuPSF.jsxinc, line 11014
Gets the selected file.
Returns:
Type Description
File | null The new File, if any. null if the File does not exist or the user has input an incorrect path.

Type Definitions

DuFileSelector.onChange()

D:/DEV_SRC/RxOT/DuPSF/tools/output/DuPSF.jsxinc, line 11008
Called when the file has changed.