Selection.PasteAndFormat method (Word)

Pastes the selected table cells and formats them as specified.

Syntax

expression. PasteAndFormat( _Type_ )

expression Required. A variable that represents a Selection object.

Parameters

Name Required/Optional Data type Description
Type Required WdRecoveryType The type of formatting to use when pasting the selected table cells.

Example

This example pastes a selected Microsoft Excel chart as a picture. This example assumes that the Clipboard contains an Excel chart.

Sub PasteChart() 
 Selection.PasteAndFormat Type:=wdChartPicture 
End Sub

See also

Selection Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.