JVCL Help:TJvFilenameEdit.DialogFiles

From Project JEDI Wiki
Jump to navigationJump to search
JEDI Visual Component Library Help

Search in JVCL Help

 
Search in all projects
 

Summary

Returns a list of the file names selected in the dialog.


Pascal

 propertyDialogFiles: TStrings;


Description

DialogFiles is a string list that contains each selected file name with its full directory path. (To let users select multiple file names, set the ofAllowMultiSelect flag in DialogOptions.) Use properties and methods for string lists to traverse this list of files and read individual items.
The example below assigns the list of files in DialogFiles to the Items property of a TListBox component.
ListBox1.Items.Assign(JvFilenameEdit1.DialogFiles);


See Also

TJvFilenameEdit.Dialog, TJvFilenameEdit.DialogOptions


About

Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page