Setting Default Paste Option

A

Arthur

When pasting in Word or PowerPoint there are options
including "keep source formatting" and "keep text only".
By default, the source formatting is used. However,
almost always I want to keep text only. How can I set it
as default?
 
E

Eric Lawrence [MSFT]

To my great sadness, you cannot.

--
Thanks,

Eric Lawrence
Program Manager
Assistance and Worldwide Services

This posting is provided "AS IS" with no warranties, and confers no rights.
 
M

Mike Williams [MVP]

Eric said:
To my great sadness, you cannot.

But you can create you own paste button with a macro to specify text only.
Someone posted code for this on a Word or Office newsgroup recently.
 
O

Opinicus

Mike Williams said:
But you can create you own paste button with a macro to specify text
only. Someone posted code for this on a Word or Office newsgroup
recently.

<quote>
Sub PasteUnformatted()
'
' PasteUnformatted Macro
' Control shift V pastes the clipboard without formatting
Selection.PasteSpecial Link:=False, DataType:=wdPasteText, Placement:= _
wdInLine, DisplayAsIcon:=False
End Sub
</quote>

I'm not the author of the above and have forgotten who gave it to me. I
believe the line beginning "wdInLine" should be a continuation of the one
above.
 

Ask a Question

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.

Ask a Question

Top