hi, i have a looping action for each Sentence and for each paragraph. But i would like to loop through each Line. is this possible?
Code:
Public Sub ParseLines()
'SPLIT BY PARAGRAPHS
Dim singleLine As Paragraph
Dim lineText As String
For Each singleLine In ActiveDocument.Paragraphs
lineText = singleLine.Range.Text
MsgBox lineText
Next singleLine
End Sub