G
Greg Maxey
I don't think there is a built in command but you could assign a macro to
keyboard shortcut and do it:
Sub DeleteToEndofLing()
Dim oRng As Word.Range
Set oRng = ActiveDocument.Bookmarks("\line").Range
'Don't include the end of line mark.
If oRng.Characters.Last = vbCr Or oRng.Characters.Last = Chr(11) Then
oRng.MoveEnd wdCharacter, -1
End If
oRng.Start = Selection.Start
oRng.Delete
End Sub
--
Greg Maxey - Word MVP
My web site http://gregmaxey.mvps.org
Nov 4, 2008. Remember it well. You just might
spend your sunset years telling your children and
your children's children what it was once like in
the United States where men were free.
keyboard shortcut and do it:
Sub DeleteToEndofLing()
Dim oRng As Word.Range
Set oRng = ActiveDocument.Bookmarks("\line").Range
'Don't include the end of line mark.
If oRng.Characters.Last = vbCr Or oRng.Characters.Last = Chr(11) Then
oRng.MoveEnd wdCharacter, -1
End If
oRng.Start = Selection.Start
oRng.Delete
End Sub
--
Greg Maxey - Word MVP
My web site http://gregmaxey.mvps.org
Nov 4, 2008. Remember it well. You just might
spend your sunset years telling your children and
your children's children what it was once like in
the United States where men were free.