Aracılığıyla paylaş


ChartSheet.Paste Yöntem

Yapıştırır Pano'dan veri belirtilen grafik Microsoft.Office.Tools.Excel.ChartSheet.

Ad alanı:  Microsoft.Office.Tools.Excel
Derleme:  Microsoft.Office.Tools.Excel (Microsoft.Office.Tools.Excel.dll içinde)

Sözdizimi

'Bildirim
Sub Paste ( _
    Type As Object _
)
void Paste(
    Object Type
)

Parametreler

Örnekler

Aşağıdaki kod örneğinde Paste ek aralığı verilerini Pano'dan geçerli yapıştırma yöntemi Microsoft.Office.Tools.Excel.ChartSheet.

Private Sub PasteIntoChartSheet()
    Globals.Sheet1.Range("A1", "A5").Value2 = 22
    Globals.Sheet1.Range("B1", "B5").Value2 = 55

    Me.SetSourceData(Globals.Sheet1.Range("A1", "B5"), _
        Excel.XlRowCol.xlColumns)
    Me.ChartType = Excel.XlChartType.xl3DColumn

    ' Set additional range values and copy them to the Clipboard.
    Globals.Sheet1.Range("A6", "A10").Value2 = 11
    Globals.Sheet1.Range("B6", "B10").Value2 = 33
    Globals.Sheet1.Range("A6", "B10").Copy()

    ' Paste the contents of the Clipboard into the chart.
    Me.Paste()
End Sub
private void PasteIntoChartSheet()
{
    Globals.Sheet1.Range["A1", "A5"].Value2 = 22;
    Globals.Sheet1.Range["B1", "B5"].Value2 = 55;

    this.SetSourceData(Globals.Sheet1.Range["A1", "B5"],
        Excel.XlRowCol.xlColumns);
    this.ChartType = Excel.XlChartType.xl3DColumn;

    // Set additional range values and copy them to the Clipboard.
    Globals.Sheet1.Range["A6", "A10"].Value2 = 11;
    Globals.Sheet1.Range["B6", "B10"].Value2 = 33;
    Globals.Sheet1.Range["A6", "B10"].Copy();

    // Paste the contents of the Clipboard into the chart.
    this.Paste();
}

.NET Framework Güvenliği

Ayrıca bkz.

Başvuru

ChartSheet Arabirim

Microsoft.Office.Tools.Excel Ad Alanı