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