customui エディタを使用して、これを customui14 部分に追加できます
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<commands>
<command idMso="Paste" enabled="false"/>
<command idMso="PasteGallery" enabled="false"/>
<command idMso="PasteGalleryMini" enabled="false"/>
<command idMso="PasteMenu" enabled="false"/>
<command idMso="PasteLink" enabled="false"/>
<command idMso="PasteAsHyperlink" enabled="false"/>
<command idMso="PasteSpecialDialog" enabled="false"/>
<command idMso="PasteFormatting" enabled="false"/>
<command idMso="PasteFormulas" enabled="false"/>
<command idMso="PasteValues" enabled="false"/>
<command idMso="PasteFormulasAndNumberFormatting" enabled="false"/>
<command idMso="PasteTranspose" enabled="false"/>
<command idMso="PastePictureLink" enabled="false"/>
</commands>
</customUI>
代わりにコントロールを非表示にする場合は、操作するメニューごとに行う必要があります。たとえば、セル メニューの場合
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<contextMenus>
<contextMenu idMso="ContextMenuCell">
<gallery idMso="PasteGalleryMini" visible="false"/>
</contextMenu>
</contextMenus>
</customUI>