XmlMappedRange.CopyPicture 方法
将 XmlMappedRange 控件作为图片复制到剪贴板。
命名空间: Microsoft.Office.Tools.Excel
程序集: Microsoft.Office.Tools.Excel(在 Microsoft.Office.Tools.Excel.dll 中)
语法
声明
Function CopyPicture ( _
Appearance As XlPictureAppearance, _
Format As XlCopyPictureFormat _
) As Object
Object CopyPicture(
XlPictureAppearance Appearance,
XlCopyPictureFormat Format
)
参数
- Appearance
类型:Microsoft.Office.Interop.Excel.XlPictureAppearance
指定复制图片的方法。
可以是下列 XlPictureAppearance 常数之一:
xlPrinter
xlScreen
- Format
类型:Microsoft.Office.Interop.Excel.XlCopyPictureFormat
该图片的格式。
可以是下列 XlCopyPictureFormat 常数之一:
xlBitmap
xlPicture
返回值
备注
可选参数
有关可选参数的信息,请参见Office 解决方案中的可选参数。
示例
下面的代码示例使用 CopyPicture 方法将 XmlMappedRange 作为位图复制到剪贴板。 此代码示例假定当前工作表包含一个名为 CustomerLastNameCell 的 XmlMappedRange。
Private Sub CopyAsBitmap()
Me.CustomerLastNameCell.Value2 = "Smith"
Me.CustomerLastNameCell.CopyPicture( _
Excel.XlPictureAppearance.xlScreen, Excel.XlCopyPictureFormat.xlBitmap)
End Sub
private void CopyAsBitmap()
{
this.CustomerLastNameCell.Value2 = "Smith";
this.CustomerLastNameCell.CopyPicture(
Excel.XlPictureAppearance.xlScreen,
Excel.XlCopyPictureFormat.xlBitmap);
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。