WorkbookBase.DocumentInspectors プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ブックのドキュメント検査モジュールのコレクションを取得します。
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