NamedRange.CopyPicture-Methode
Kopiert das NamedRange-Steuerelement als Bild in die Zwischenablage.
Namespace: Microsoft.Office.Tools.Excel
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
Syntax
'Declaration
Function CopyPicture ( _
Appearance As XlPictureAppearance, _
Format As XlCopyPictureFormat _
) As Object
Object CopyPicture(
XlPictureAppearance Appearance,
XlCopyPictureFormat Format
)
Parameter
- Appearance
Typ: Microsoft.Office.Interop.Excel.XlPictureAppearance
Gibt an, wie das Bild kopiert werden soll.
Kann eine der folgenden XlPictureAppearance-Konstanten sein:
xlPrinter
xlScreen
- Format
Typ: Microsoft.Office.Interop.Excel.XlCopyPictureFormat
Das Format des Bilds.
Kann eine der folgenden XlCopyPictureFormat-Konstanten sein:
xlBitmap
xlPicture
Rückgabewert
Typ: System.Object
Hinweise
Optionale Parameter
Informationen zu optionalen Parametern finden Sie unter Optionale Parameter in Office-Lösungen.
Beispiele
Im folgenden Codebeispiel wird ein NamedRange erstellt und mit dem Wort "Smith" aufgefüllt.Anschließend wird der NamedRange mithilfe der CopyPicture-Methode als Bitmap in die Zwischenablage kopiert.
Dieses Beispiel bezieht sich auf eine Anpassung auf Dokumentebene.
Private copyBitmapRange As Microsoft.Office.Tools.Excel.NamedRange
Private Sub CopyAsBitmap()
copyBitmapRange = Me.Controls.AddNamedRange( _
Me.Range("C3"), "copyBitmapRange")
Me.copyBitmapRange.Value2 = "Smith"
Me.copyBitmapRange.CopyPicture( _
Excel.XlPictureAppearance.xlScreen, _
Excel.XlCopyPictureFormat.xlBitmap)
End Sub
Microsoft.Office.Tools.Excel.NamedRange copyBitmapRange;
private void CopyAsBitmap()
{
copyBitmapRange = this.Controls.AddNamedRange(
this.Range["C3"], "copyBitmapRange");
this.copyBitmapRange.Value2 = "Smith";
this.copyBitmapRange.CopyPicture(
Excel.XlPictureAppearance.xlScreen,
Excel.XlCopyPictureFormat.xlBitmap);
}
.NET Framework-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.