ChartSheetBase.Paste, méthode
Colle des données de graphique du Presse-papiers dans le Microsoft.Office.Tools.Excel.ChartSheetBase spécifié.
Espace de noms : Microsoft.Office.Tools.Excel
Assembly : Microsoft.Office.Tools.Excel.v4.0.Utilities (dans Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Syntaxe
'Déclaration
Public Sub Paste ( _
type As Object _
)
public void Paste(
Object type
)
Paramètres
- type
Type : System.Object
Spécifie les informations de Microsoft.Office.Tools.Excel.ChartSheetBase à coller si un graphique est placé dans le Presse-papiers.Il peut s'agir de l'une des constantes XlPasteType suivantes : xlPasteFormats, xlPasteFormulas ou xlPasteAll.La valeur par défaut est xlPasteAll.Si le Presse-papiers comporte d'autres données qu'un graphique, cet argument ne peut pas être utilisé.
Exemples
L'exemple de code suivant utilise la méthode Paste pour coller des données de plage supplémentaires du Presse-papiers dans le Microsoft.Office.Tools.Excel.ChartSheetBase actuel.
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();
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.