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

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.