ScopeFolder.Name プロパティ (Office)
検索可能なフォルダーの名前を取得します。 値の取得のみ可能です。
構文
式。名前
式ScopeFolder オブジェクトを表す変数。
戻り値
文字列
注釈
ScopeFolder オブジェクトは、 SearchFolders コレクションで使用することを目的としています。 使用して 検索対象のフォルダーを定義します。
例
次の使用例は、検索されるファイルの名前をメッセージ ボックスに表示します。
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)
関連項目
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。