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