Application.Inspectors プロパティ (Outlook)
開いているすべてのインスペクターを表す Inspector オブジェクトを格納している インスペクター コレクション オブジェクトを返します。 読み取り専用です。
構文
expression. Inspectors
expressionApplicationオブジェクトを表す変数 。
例
この Microsoft Visual Basic の例では、 検査項目 のプロパティ、 Count プロパティと インスペクター オブジェクトの Item メソッドを使用して、すべてのインスペクター ウィンドウのキャプションを表示します。
Private Sub CommandButton1_Click()
Dim myInspectors As Outlook.Inspectors
Dim x as Integer
Dim iCount As Integer
Set myInspectors = Application.Inspectors
iCount = Application.Inspectors.Count
If iCount > 0 Then
For x = 1 To iCount
MsgBox myInspectors.Item(x).Caption
Next x
Else
MsgBox "No inspector windows are open."
End If
End Sub
関連項目
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。