ChartSheet.Paste 方法
将图表数据从剪贴板粘贴到指定的 Microsoft.Office.Tools.Excel.ChartSheet 中。
命名空间: Microsoft.Office.Tools.Excel
程序集: Microsoft.Office.Tools.Excel.v4.0.Utilities(在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)
Microsoft.Office.Tools.Excel(在 Microsoft.Office.Tools.Excel.dll 中)
语法
声明
Sub Paste ( _
Type As Object _
)
void Paste(
Object Type
)
参数
- Type
类型:System.Object
如果图表位于剪贴板上,则指定要粘贴的 Microsoft.Office.Tools.Excel.ChartSheet 信息。可以为以下 XlPasteType 常数之一:xlPasteFormats、xlPasteFormulas 或 xlPasteAll。默认值为 xlPasteAll。如果剪贴板上有图表之外的数据,则不能使用此参数。
示例
下面的代码示例使用 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();
// Paste the contents of the Clipboard into the chart.
this.Paste();
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。