Click or drag to resize

FileListItemPath Property

Get or set the Path of the filelist item.

Namespace:  Jam.Shell
Assembly:  ShellBrowser.Winforms (in ShellBrowser.Winforms.dll) Version: 6.3.1
Syntax
public override string Path { get; set; }

Property Value

Type: String
Examples
This smaple code shows the path of the last item in a FileList:
FileListItem fli = (FileListItem)FileList1.Items[FileList.Items.Count-1];
MessageBox.Show(fli.Path);
See Also