Click or drag to resize

FileListItemPath Property

Get or set the Path of the filelist item.

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

Property Value

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