dotnetCHARTING Send comments on this topic.
GetElement(Int32,Int32) Method
See Also 
dotnetCHARTING Namespace > SeriesCollection Class > GetElement Method : GetElement(Int32,Int32) Method


seriesIndex
Index of the series.
elementIndex
Indes of the element.
Gets an Element at the specified series and element index.

Syntax

Visual Basic (Declaration)  
Public Overloads Function GetElement( _
   ByVal seriesIndex As Integer, _
   ByVal elementIndex As Integer _
) As Element
Visual Basic (Usage) Copy Code
Dim instance As SeriesCollection
Dim seriesIndex As Integer
Dim elementIndex As Integer
Dim value As Element
 
value = instance.GetElement(seriesIndex, elementIndex)
C#  
public Element GetElement( 
   int seriesIndex,
   int elementIndex
)

Parameters

seriesIndex
Index of the series.
elementIndex
Indes of the element.

Return Value

Returns an Element at the specified series and element index.

See Also