Document.RemoveNumbers method (Word)
Removes numbers or bullets from the specified document.
Syntax
expression. RemoveNumbers
( _NumberType_
)
expression A variable that represents a Document object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
NumberType | Optional | WdNumberType | The type of number to be removed. |
Example
This example removes the numbers from the beginning of any numbered paragraphs in the active document.
ActiveDocument.RemoveNumbers wdNumberParagraph
This example removes the bullets or numbers from the third list in MyDocument.doc.
If Documents("MyDocument.doc").Lists.Count >= 3 Then
Documents("MyDocument.doc").Lists(3).RemoveNumbers
End If
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.