Share via


CommandBarButton.PasteFace Method

Office Developer Reference

Pastes the contents of the Clipboard onto a CommandBarButton.

Aa432158.vs_note(en-us,office.12).gif  Note
The use of CommandBars in some Microsoft Office applications has been superseded by the new Ribbon user interface. For more information, search help for the keyword "Ribbon."

Syntax

expression.PasteFace

expression   A variable that represents a CommandBarButton object.

Example

This example finds the built-in FileOpen button and pastes the face from the Spelling and Grammar button onto it from the Clipboard.

Visual Basic for Applications
  Set myControl = CommandBars.FindControl(Type:=msoControlButton, Id:=2)
myControl.CopyFace
Set myControl = CommandBars.FindControl(Type:=msoControlButton, Id:=23)
myControl.PasteFace

See Also