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 |
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