ChartSheetBase.Location, méthode
Déplace Microsoft.Office.Tools.Excel.ChartSheetBase vers un nouvel emplacement.
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 Function Location ( _
where As XlChartLocation, _
name As Object _
) As Chart
public Chart Location(
XlChartLocation where,
Object name
)
Paramètres
- where
Type : Microsoft.Office.Interop.Excel.XlChartLocation
Une des valeurs de XlChartLocation qui spécifient l'emplacement de destination du graphique.
- name
Type : System.Object
Nom de la feuille qui incorpore le graphique si Where est xlLocationAsObject ou nom de la nouvelle feuille si Where est xlLocationAsNewSheet.
Valeur de retour
Type : Microsoft.Office.Interop.Excel.Chart
Exemples
L'exemple de code suivant utilise la méthode Location pour déplacer le Microsoft.Office.Tools.Excel.ChartSheetBase actuel vers une nouvelle feuille de calcul appelée "NewSheet".
Private Sub MoveToNewSheet()
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
Me.Location(Excel.XlChartLocation.xlLocationAsNewSheet, _
"NewSheet")
End Sub
private void MoveToNewSheet()
{
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;
this.Location(Excel.XlChartLocation.xlLocationAsNewSheet,
"NewSheet");
}
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.