Share via


ScopeFolder.Name Property (Office)

Gets the name of a searchable folder. Read-only.

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.

Example

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

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

See Also

Concepts

ScopeFolder Object

ScopeFolder Object Members