[]
Represents a collection of all the IColorStop objects for the specified series.
public interface IColorStops : IEnumerable
Gets the number of represented objects (read-only).
int Count { get; }
Returns the IColorStop object from a collection.
IColorStop this[int index] { get; }
index
intSpecifies the position of an element in the collection.
Returns IColorStop
Adds an IColorStop object to the specified collection.
IColorStop Add(double position)
position
doubleRepresents the position in which to apply the color stop.
Clears the represented object.
void Clear()