다음을 통해 공유


XmlMappedRange.CopyPicture(XlPictureAppearance, XlCopyPictureFormat) 메서드

정의

XmlMappedRange 컨트롤을 클립보드에 그림으로 복사합니다.

public object CopyPicture (Microsoft.Office.Interop.Excel.XlPictureAppearance Appearance = Microsoft.Office.Interop.Excel.XlPictureAppearance.xlScreen, Microsoft.Office.Interop.Excel.XlCopyPictureFormat Format = Microsoft.Office.Interop.Excel.XlCopyPictureFormat.xlPicture);
abstract member CopyPicture : Microsoft.Office.Interop.Excel.XlPictureAppearance * Microsoft.Office.Interop.Excel.XlCopyPictureFormat -> obj
Public Function CopyPicture (Optional Appearance As XlPictureAppearance = Microsoft.Office.Interop.Excel.XlPictureAppearance.xlScreen, Optional Format As XlCopyPictureFormat = Microsoft.Office.Interop.Excel.XlCopyPictureFormat.xlPicture) As Object

매개 변수

Appearance
XlPictureAppearance

그림을 복사하는 방법을 지정합니다. 다음 XlPictureAppearance 상수 중 하나일 수 있습니다. xlPrinterxlScreen

Format
XlCopyPictureFormat

그림의 형식입니다. 다음 XlCopyPictureFormat 상수 중 하나일 수 있습니다. xlBitmapxlPicture

반환

예제

다음 코드 예제에서는 메서드를 CopyPicture 사용하여 를 클립보드에 비트맵으로 복사 XmlMappedRange 합니다. 이 코드 예제에서는 현재 워크시트에 라는 가 CustomerLastNameCell포함되어 있다고 XmlMappedRange 가정합니다.

private void CopyAsBitmap()
{
    this.CustomerLastNameCell.Value2 = "Smith";
    this.CustomerLastNameCell.CopyPicture(
        Excel.XlPictureAppearance.xlScreen, 
        Excel.XlCopyPictureFormat.xlBitmap);
}
Private Sub CopyAsBitmap()
    Me.CustomerLastNameCell.Value2 = "Smith"
    Me.CustomerLastNameCell.CopyPicture( _
        Excel.XlPictureAppearance.xlScreen, Excel.XlCopyPictureFormat.xlBitmap)
End Sub

설명

선택적 매개 변수

선택적 매개 변수에 대한 자세한 내용은 Office 솔루션의 선택적 매개 변수를 참조하세요.

적용 대상