[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IColorStops

Interface IColorStops

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents a collection of all the IColorStop objects for the specified series.

public interface IColorStops : IEnumerable
Inherited Members
System.Collections.IEnumerable.GetEnumerator()

Properties

Count

Gets the number of represented objects (read-only).

int Count { get; }

Property Value

int

this[int]

Returns the IColorStop object from a collection.

IColorStop this[int index] { get; }

Parameters

index int

Specifies the position of an element in the collection.

Property Value

IColorStop

Returns IColorStop

Methods

Add(double)

Adds an IColorStop object to the specified collection.

IColorStop Add(double position)

Parameters

position double

Represents the position in which to apply the color stop.

Returns

IColorStop

Clear()

Clears the represented object.

void Clear()