FileDialog::GetSelectionCount
USize GetSelectionCount (void) const;
Return Value
Description
Example
DG::FileDialog dlg (DG::FileDialog::OpenMultiFile);
if (!dlg.Invoke ())
return false;
int count = dlg.GetSelectionCount ();
for (int n = 0; n < count; n++) {
IO::File file (dlg.GetSelectedFile (n));
}