diff --git a/documentation/Fl_File_Chooser.html b/documentation/Fl_File_Chooser.html index 9e907dfa0..c25cad60e 100644 --- a/documentation/Fl_File_Chooser.html +++ b/documentation/Fl_File_Chooser.html @@ -274,6 +274,19 @@ const char *value()
Sets or gets the current value of the selected file. +
In the second form, file is a 1-based index into a list of
+file names. The number of selected files is returned by
+Fl_File_Chooser::count().
+
+
This sample code loops through all selected files: +
+// Get list of filenames user selected from a MULTI chooser
+for ( int t=1; t<=chooser->count(); t++ ) {
+ const char *filename = chooser->value(t);
+ ..
+}
+
+
Returns 1 if the Fl_File_Chooser window is visible.