ChartSheet.Paste 方法

將 [剪貼簿] 中的圖表資料貼至指定的 Microsoft.Office.Tools.Excel.ChartSheet 中。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)

語法

'宣告
Sub Paste ( _
    Type As Object _
)
void Paste(
    Object Type
)

參數

範例

下列程式碼範例會使用 Paste 方法,將 [剪貼簿] 中其他的範圍資料貼至目前的 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(missing);

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

.NET Framework 安全性

請參閱

參考

ChartSheet 介面

Microsoft.Office.Tools.Excel 命名空間