_Chart.GetChartElement(Int32, Int32, Int32, Int32, Int32) 方法

定义

返回有关指定 X 和 Y 坐标处的图表元素的信息。 本方法的与众不同之处在于只需指定前两个参数的值。 Microsoft Excel 将填充其他参数,当方法返回时,代码应检查这些值。

public:
 void GetChartElement(int x, int y, int % ElementID, int % Arg1, int % Arg2);
public void GetChartElement (int x, int y, ref int ElementID, ref int Arg1, ref int Arg2);
Public Sub GetChartElement (x As Integer, y As Integer, ByRef ElementID As Integer, ByRef Arg1 As Integer, ByRef Arg2 As Integer)

参数

x
Int32

必需 整数。 图表元素的 X 坐标。

y
Int32

必需 整数。 图表元素的 Y 坐标。

ElementID
Int32

必需 整数。 当 方法返回时,此参数包含 XlChartItem 指定坐标处的图表元素的值。 有关详细信息,请参阅"备注"部分。

Arg1
Int32

必需 整数。 方法返回时,此参数包含与图表元素相关的信息。 有关详细信息,请参阅"备注"部分。

Arg2
Int32

必需 整数。 方法返回时,此参数包含与图表元素相关的信息。 有关详细信息,请参阅"备注"部分。

注解

方法返回后的值ElementID确定 和 Arg2 是否Arg1包含任何信息,如下表所示。

xlAxis AxisIndexAxisType
xlAxisTitle AxisIndexAxisType
xlDisplayUnitLabel AxisIndexAxisType
xlMajorGridlines AxisIndexAxisType
xlMinorGridlines AxisIndexAxisType
xlPivotChartDropZone DropZoneType
xlPivotChartFieldButton DropZoneTypePivotFieldIndex
xlDownBars GroupIndex
xlDropLines GroupIndexNone
xlHiLoLines GroupIndex
xlRadarAxisLabels GroupIndex
xlSeriesLines GroupIndex
xlUpBars GroupIndex
xlChartArea
xlChartTitle
xlCorners
xlDataTable
xlFloor
xlLegend
xlNothing
xlPlotArea
xlWalls
xlDataLabel SeriesIndexPointIndex
xlErrorBars SeriesIndex
xlLegendEntry SeriesIndex
xlLegendKey SeriesIndex
xlSeries SeriesIndexPointIndex
xlShape ShapeIndex
xlTrendline SeriesIndexTrendLineIndex
xlXErrorBars SeriesIndex
xlYErrorBars SeriesIndex

下表描述了 和 Arg2 在方法返回后的含义Arg1

AxisIndex指定轴主要或辅助。 可以是以下 XlAxisGroup 常量之一: xlPrimaryxlSecondary
AxisType指定坐标轴类型。 可以是以下 XlAxisType 常量之一: xlCategoryxlSeriesAxisxlValue
DropZoneType指定拖放区域类型: 列、 数据、 页或行字段。 可以是以下 XlPivotFieldOrientation 常量之一: xlColumnFieldxlDataFieldxlPageFieldxlRowField。 列字段常量和行字段常量分别指定序列字段和类别字段。
GroupIndex指定集合中 ChartGroups 特定图表组的偏移量。
PivotFieldIndex指定集合中 PivotFields 特定列 (序列) 、数据、页或行 (类别) 字段的偏移量。 如果拖放区域类型为 xlDataField,则返回 -1。
PointIndex指定集合中序列中 Points 特定点的偏移量。 值为 –1 表示已选择所有数据点。
SeriesIndex指定集合中 Series 特定序列的偏移量。
ShapeIndex指定集合中特定形状的 Shapes 偏移量。
TrendlineIndex指定序列中特定趋势线集合 Trendlines 中的偏移量。

适用于