An interface to a collection class containing data
that define the set of points to be displayed on the curve.
| C# | Visual Basic | Visual C++ |
public interface IPointList : ICloneable
Public Interface IPointList _ Implements ICloneable
public interface class IPointList : ICloneable
| All Members | Methods | Properties | |||
| Icon | Member | Description |
|---|---|---|
| Clone()() | Creates a new object that is a copy of the current instance. (Inherited from ICloneable.) | |
| Count |
Gets the number of points available in the list.
| |
| Item[([Int32])] |
Indexer to access a data point by its ordinal position in the collection.
|
This interface is designed to allow customized data abstraction. The default data
collection class is PointPairList, however, you can define your own
data collection class using the IPointList interface.
