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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。