次の方法で共有


DocumentBase.DocumentInspectors プロパティ

非表示の個人情報 (作成者の名前、社名、リビジョン日付など) を検索するために使用できる Microsoft.Office.Core.DocumentInspectors オブジェクトを取得します。

名前空間:  Microsoft.Office.Tools.Word
アセンブリ:  Microsoft.Office.Tools.Word.v4.0.Utilities (Microsoft.Office.Tools.Word.v4.0.Utilities.dll 内)

構文

'宣言
Public ReadOnly Property DocumentInspectors As DocumentInspectors
public DocumentInspectors DocumentInspectors { get; }

プロパティ値

型 : Microsoft.Office.Core.DocumentInspectors
非表示の個人情報 (作成者の名前、社名、リビジョン日付など) を検索するために使用できる Microsoft.Office.Core.DocumentInspectors オブジェクト。

次のコード例では、ドキュメント検査を反復処理します。コードは各検査を調べ、その名前と、ステータスと結果を示すメッセージ ボックスを表示します。この例を使用するには、これをドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。

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
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);
    }
}

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

関連項目

DocumentBase クラス

Microsoft.Office.Tools.Word 名前空間