Paragraph.NoLineNumber property (Word)

True if line numbers are repressed for the specified paragraph. Read/write Long.

Syntax

expression. NoLineNumber

expression A variable that represents a 'Paragraph' object.

Remarks

This property can be True, False, or wdUndefined. Use the LineNumbering property of the PageSetup object to set line numbers.

Example

This example enables line numbering for the active document. The starting number is set to 1, and the numbering is continuous throughout all sections in the document. Line numbering is then repressed for the second paragraph.

With ActiveDocument.PageSetup.LineNumbering 
 .Active = True 
 .StartingNumber = 1 
 .CountBy = 1 
 .RestartMode = wdRestartContinuous 
End With 
ActiveDocument.Paragraphs(2).NoLineNumber = True

See also

Paragraph Object

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.