XmlMappedRange.CopyPicture(XlPictureAppearance, XlCopyPictureFormat) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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 솔루션의 선택적 매개 변수를 참조하세요.