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
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.
There are many built-in keyboard shortcuts that will select text, then
press Delete.
Shift + End highlights text from cursor point to the end of the
line.
Ctrl + Shift + Down Arrow highlights text from cursor point to the end
of a paragraph.
Extend Mode (F8) can highlight text to specific character or
punctuation.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.