Selection.PasteAndFormat Method

Word Developer Reference

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.

Visual Basic for Applications
  Sub PasteChart()
    Selection.PasteAndFormat Type:=wdChartPicture
End Sub

See Also