ImageEn, unit iexFolderTree |
|
TIEFileListBox.MultiSelect
Declaration
property MultiSelect: Boolean;
Description
Enable to allow the selection of multiple files;
Default: 'False
// Allow multiple files to be selected
IEFileListBox1.MultiSelect := True;
// Access selection...
for i := 0 to IEFileListBox1.count - 1 do
if IEFileListBox1.Selected[ i ] then ...