This Word VBA macro switches on and off the Clipboard task pane.
Macro Example
Sub SwitchClipboadPane() Application.ShowClipboard End Sub
Description
Application
The Application property returns the Application object that represents Microsoft Word application.
Application.ShowClipboard
The Application.ShowClipboard method displays or hides the Clipboard task pane.
We do not need to use the Not operator.
So the following simple macro allows us to switch on and off the Clipboard task pane.
Sub SwitchClipboadPane() Application.ShowClipboard End Sub
Properties
http://www.relief.jp/itnote/archives/word-vba-show-clipboard.php
Apply To
- Word 2013
- Word 2010
- Word 2007