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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。