FileListItemPath Property |
Get or set the Path of the filelist item.
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax public override string Path { get; set; }
Public Overrides Property Path As String
Get
Set
public:
virtual property String^ Path {
String^ get () override;
void set (String^ value) override;
}
abstract Path : string with get, set
override Path : string with get, set
Property Value
Type:
StringExamples
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