DocumentInspectors Object

Office Developer Reference

Represents a collection of DocumentInspector objects.

Remarks

The DocumentInspectors collection is part of the Document object in Microsoft Office Word, the Workbook object in Microsoft Office Excel, and the Presentation object in Microsoft Office PowerPoint. A DocumentInspectors collection contains multiple DocumentInspector objects, one for some built-in options and each installed custom Document Inspector module. For more information, see the DocumentInspector help topic.

Example

The following example calls the Fix method of a Document Inspector module and displays the status of the action and the specific items that are removed.

Visual Basic for Applications
  Public Sub FixDocument()
Dim docStatus As MsoDocInspectorStatus
Dim results As String
   ActiveDocument.DocumentInspectors(3).Fix docStatus, results

MsgBox docStatus MsgBox("The following items were removed " & results)

End Sub

See Also