Document.TextLineEnding property (Word)

Returns or sets a WdLineEndingType constant indicating how Microsoft Word marks the line and paragraph breaks in documents saved as text files. Read/write.

Syntax

expression. TextLineEnding

expression Required. A variable that represents a Document object.

Example

This example sets the active document to enter a carriage return for line and paragraph breaks when it is saved as a text file.

Sub LineEndings() 
 ActiveDocument.TextLineEnding = wdCROnly 
End Sub

See also

Document 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.