ShellFilePreviewItemIdList Property |
Gets or sets the absolute ItemIdList that is previewed.
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax public ItemIdList ItemIdList { get; set; }
Public Property ItemIdList As ItemIdList
Get
Set
public:
property ItemIdList^ ItemIdList {
ItemIdList^ get ();
void set (ItemIdList^ value);
}
member ItemIdList : ItemIdList with get, set
Property Value
Type:
ItemIdListAn
ItemIdListRemarks As compared to the
Path property there are files that do not have a physical path but still have an ItemIdList (like files on attached devices).
If the ShellFilePreview shall be synchronized with other ShellBrowser components this is most easily done using the
ShellControlConnector property.
However currently synchronization to a
FileList is not supported. In this case you can use this property to do a manual synchronization.
Examples
The following example uses the property to synchronize with a FileList
if (fileList1.SelectedItems.Count > 0)
{
shellFilePreview1.ItemIdList = ((FileListItem) fileList1.SelectedItems[0]).AbsoluteItemIdList;
}
See Also