ChartSheetBase.Location(XlChartLocation, Object) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
öğesini ChartSheetBase yeni bir konuma taşır.
public Microsoft.Office.Interop.Excel.Chart Location (Microsoft.Office.Interop.Excel.XlChartLocation where, object name);
member this.Location : Microsoft.Office.Interop.Excel.XlChartLocation * obj -> Microsoft.Office.Interop.Excel.Chart
Public Function Location (where As XlChartLocation, Optional name As Object) As Chart
Parametreler
- where
- XlChartLocation
Grafiğin XlChartLocation nereye taşınacağını belirten değerlerden biri.
- name
- Object
Grafiğin eklendiği sayfanın adı veya ise Where
xlLocationAsObjectWhere
yeni sayfanın adı.xlLocationAsNewSheet
Döndürülenler
Örnekler
Aşağıdaki kod örneği, geçerli Microsoft.Office.Tools.Excel.ChartSheetBase öğeyi "NewSheet" adlı yeni bir çalışma sayfasına taşımak için yöntemini kullanırLocation.
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");
}
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