![]() | Type | Description | ||
| String | A string expression that may contains wild cards like * or ? |
The following VB sample excludes the "Temp" folders:
With ExFileView1
.ExcludeFolderFilter = "*temp*"
End With
The following C++ sample excludes the "Temp" folders:
m_fileview.SetExcludeFolderFilter( "temp*" );
The following VB.NET sample excludes the "Temp" folders:
AxExFileView1.ExcludeFolderFilter = "*temp*"
The following C# sample excludes the "Temp" folders:
axExFileView1.ExcludeFolderFilter = "*temp*";
The following VFP sample excludes the "Temp" folders:
With thisform.ExFileView1
.ExcludeFolderFilter = "*temp*"
EndWith