Click or drag to resize

ExplorerBrowserContentFilter Property

A ShellItemFilter specifiying filter criteria for this instance.

Namespace:  Jam.Shell
Assembly:  ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax
public ShellItemFilter ContentFilter { get; set; }

Property Value

Type: ShellItemFilter
Remarks
Not that a specified filter doesn't apply to all VisiblePanes in the control, but mainly the items listed in the shellview part are filtered.
Examples
The following example shows how to use the filter.
C#
// Only show .txt files
explorerBrowser1.ContentFilter.FilePatternFilter = "*.txt";
See Also