IWorkspaceItemFilter.IsFiltered Method

Definition

Overloads

IsFiltered(String)

Check a single item against the filter. The item must exist on disk.

IsFiltered(String, Boolean)

Check a single item against the filter

IsFiltered(String)

Check a single item against the filter. The item must exist on disk.

public:
 bool IsFiltered(System::String ^ fullPath);
public:
 bool IsFiltered(Platform::String ^ fullPath);
bool IsFiltered(std::wstring const & fullPath);
public bool IsFiltered (string fullPath);
abstract member IsFiltered : string -> bool
Public Function IsFiltered (fullPath As String) As Boolean

Parameters

fullPath
String

full path to the item (file or folder) we want to check

Returns

true if items is "filtered out" by current filter settings

Applies to

IsFiltered(String, Boolean)

Check a single item against the filter

public:
 bool IsFiltered(System::String ^ fullPath, bool isFolder);
public:
 bool IsFiltered(Platform::String ^ fullPath, bool isFolder);
bool IsFiltered(std::wstring const & fullPath, bool isFolder);
public bool IsFiltered (string fullPath, bool isFolder);
abstract member IsFiltered : string * bool -> bool
Public Function IsFiltered (fullPath As String, isFolder As Boolean) As Boolean

Parameters

fullPath
String

full path to the item (file or folder) we want to check

isFolder
Boolean

true to consider path a folder, false a file

Returns

true if items is "filtered out" by current filter settings

Applies to