Click or drag to resize

ShellFilePreviewItemIdList Property

Gets or sets the absolute ItemIdList that is previewed.

Namespace:  Jam.Shell
Assembly:  ShellBrowser (in ShellBrowser.dll) Version: 7.0
Syntax
public ItemIdList ItemIdList { get; set; }

Property Value

Type: ItemIdList
An ItemIdList
Remarks
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