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 help topic.

Example

The following example calls the 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: