WorkbookBase.DocumentInspectors プロパティ

定義

ブックのドキュメント検査モジュールのコレクションを取得します。

public:
 property Microsoft::Office::Core::DocumentInspectors ^ DocumentInspectors { Microsoft::Office::Core::DocumentInspectors ^ get(); };
public Microsoft.Office.Core.DocumentInspectors DocumentInspectors { get; }
member this.DocumentInspectors : Microsoft.Office.Core.DocumentInspectors
Public ReadOnly Property DocumentInspectors As DocumentInspectors

プロパティ値

ブックのドキュメント検査モジュールを含む Microsoft.Office.Core.DocumentInspectors コレクション。

次のコード例では、ブック内のインスペクターを反復処理します。 コードは、それぞれを検査し、インスペクターの名前と検査の状態と結果を表示するメッセージ ボックスを表示します。

この例は、ドキュメント レベルのカスタマイズ用です。

private void GetDocumentInspectors()
{
    foreach (Office.DocumentInspector insp in this.DocumentInspectors)
    {
        Office.MsoDocInspectorStatus status;
        string results = String.Empty;
        insp.Inspect(out status, out results);
        MessageBox.Show("Inspector Name: " + insp.Name 
            + "\r\nStatus: " + status.ToString() + "\r\nResults: "
            + results);
    }
}
Private Sub GetDocumentInspectors()
    For Each insp As Office.DocumentInspector In Me.DocumentInspectors
        Dim status As Office.MsoDocInspectorStatus
        Dim results As String = String.Empty
        insp.Inspect(status, results)
        MessageBox.Show("Inspector Name: " + insp.Name + vbCrLf _
            + "Status: " + status.ToString() + vbCrLf + "Results: " _
            + results)
    Next
End Sub

適用対象