ChartSheetBase.Paste (Método)
Pega los datos del gráfico desde el Portapapeles en el objeto Microsoft.Office.Tools.Excel.ChartSheetBase especificado.
Espacio de nombres: Microsoft.Office.Tools.Excel
Ensamblado: Microsoft.Office.Tools.Excel.v4.0.Utilities (en Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Sintaxis
'Declaración
Public Sub Paste ( _
type As Object _
)
public void Paste(
Object type
)
Parámetros
- type
Tipo: System.Object
Especifica la información del objeto Microsoft.Office.Tools.Excel.ChartSheetBase que pegar si un gráfico está en el Portapapeles.Puede ser una de las siguientes constantes XlPasteType: xlPasteFormats, xlPasteFormulas o xlPasteAll.El valor predeterminado es xlPasteAll.Si en el Portapapeles hay datos que no sean un gráfico, no se puede utilizar este argumento.
Ejemplos
El ejemplo de código siguiente utiliza el método Paste para pegar datos adicionales del rango desde el Portapapeles al objeto Microsoft.Office.Tools.Excel.ChartSheetBase actual.
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();
}
Seguridad de .NET Framework
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.