Reference
Components
File Dialog
Description
This component allows you to display the standard Windows file dialog box. You can choose whether the dialog is for saving or loading. You
also have access to file filters and extensions.
The File Filters input is used to determine which file types to display in the dialog. Each filter is made from two strings. The first describes the
filter. For example “Text Files (*.txt)”, you can use whatever description you like. The second string is the file extension and this must be of
the format “*.extension”. The two strings are separated by a vertical bar | . You can have multiple extensions but these must be separated by
a semicolon.
You can also have multiple filters and these must be separated by a vertical bar |. The completed filter specification must be terminated with
a double vertical line ||.
Examples
Text Files (*.txt)|*.txt||
Image Files (*.png;*.bmp;*.jpg;*.tiff)| *.png;*.bmp;*.jpg;*.tiff||
PNG Files (*.png)|*.png|Jpeg Files (*.jpg)|*.jpg||
101 of 494