Worksheet.PasteSpecial Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Pastes the contents of the Clipboard onto the worksheet, using a specified format. Use this method to paste data from other applications or to paste data in a specific format.
public void PasteSpecial (object Format, object Link, object DisplayAsIcon, object IconFileName, object IconIndex, object IconLabel, object NoHTMLFormatting);
abstract member PasteSpecial : obj * obj * obj * obj * obj * obj * obj -> unit
Public Sub PasteSpecial (Optional Format As Object, Optional Link As Object, Optional DisplayAsIcon As Object, Optional IconFileName As Object, Optional IconIndex As Object, Optional IconLabel As Object, Optional NoHTMLFormatting As Object)
Parameters
- Format
- Object
A string that specifies the Clipboard format of the data. Common format strings include "HTML", "Bitmap", "Hyperlink", "Unicode Text", and "Text".
- Link
- Object
true
to establish a link to the source of the pasted data. If the source data is not suitable for linking or the source application does not support linking, this parameter is ignored. The default value is false
.
- DisplayAsIcon
- Object
true
to display the pasted object as an icon. The default value is false
.
- IconFileName
- Object
The name of the file that contains the icon to use if DisplayAsIcon
is true
.
- IconIndex
- Object
The index number of the icon within the icon file.
- IconLabel
- Object
The text label of the icon.
- NoHTMLFormatting
- Object
true
to remove all formatting, hyperlinks, and images from HTML; false
to paste HTML as is. The default value is false
.
Remarks
If you do not know which string to pass to the Format parameter, you can view the strings that are compatible with the data on the Clipboard by trying the paste command in Excel . Copy the data to the Clipboard, use the Paste Special command in Excel, and then view the formats listed in the Paste Special dialog box.
NoHTMLFormatting
will only matter when Format
= "HTML". In all other cases, NoHTMLFormatting
will be ignored.
You must select the destination range before you use this method.
This method might modify the sheet selection, depending on the contents of the Clipboard.
Optional Parameters
For information on optional parameters, see Optional Parameters in Office Solutions.