Chart.Paste 方法
將 [剪貼簿] 中的圖表資料貼至指定的 Chart 控制項中。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
Sub Paste ( _
Type As Object _
)
void Paste(
Object Type
)
參數
- Type
型別:System.Object
如果 [剪貼簿] 中有圖表,指定要貼上的圖表資訊。可以是下列其中一個 XlPasteType 常數:xlPasteFormats、xlPasteFormulas 或 xlPasteAll。預設值是 xlPasteAll。如果 [剪貼簿] 中有圖表以外的資料,就不能使用這個引數。
備註
這個方法會變更目前選取範圍。
選擇性參數
如需選擇性參數的詳細資訊,請參閱Office 方案中的選擇性參數。
範例
下列程式碼範例會建立 Chart,然後使用 Paste 方法將 [剪貼簿] 中其他的範圍資料貼至圖表中。
Private Sub PasteDataIntoChart()
Me.Range("A1", "A5").Value2 = 22
Me.Range("B1", "B5").Value2 = 55
Dim Chart1 As Microsoft.Office.Tools.Excel.Chart = _
Me.Controls.AddChart(Me.Range("D2", "H12"), "Chart1")
Chart1.SetSourceData(Me.Range("A1", "B5"), Excel.XlRowCol.xlColumns)
Chart1.ChartType = Excel.XlChartType.xl3DColumn
' Set additional range values and copy them to the Clipboard.
Me.Range("A6", "A10").Value2 = 11
Me.Range("B6", "B10").Value2 = 33
Me.Range("A6", "B10").Copy()
' Paste the range data from the Clipboard into the chart.
Chart1.Paste()
End Sub
private void PasteDataIntoChart()
{
this.Range["A1", "A5"].Value2 = 22;
this.Range["B1", "B5"].Value2 = 55;
Microsoft.Office.Tools.Excel.Chart chart1 =
this.Controls.AddChart(this.Range["D2", "H12"],
"chart1");
chart1.SetSourceData(this.Range["A1", "B5"],
Excel.XlRowCol.xlColumns);
chart1.ChartType = Excel.XlChartType.xl3DColumn;
// Set additional range values and copy them to
// the Clipboard.
this.Range["A6", "A10"].Value2 = 11;
this.Range["B6", "B10"].Value2 = 33;
this.Range["A6", "B10"].Copy();
// Paste the range data from the Clipboard into the chart.
chart1.Paste();
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。