Syntax

expression.Name

expression A variable that represents a ScopeFolder object.

Return Value
String

Remarks

ScopeFolder objects are intended for use with the SearchFolders collection. The SearchFolders collection defines the folders that are searched when using the FileSearch object.

Example
The following example displays a message box with the name of the folder that will be searched.

Visual Basic for Applications
Dim sf As ScopeFolder Dim strScopeFolder As String Set sf = Application.FileSearch.SearchScopes.Item(1).ScopeFolder strScopeFolder = sf.Name MsgBox ("The name of the folder that will be searched is " & strScopeFolder) 

See also: