IColorOperationCollection

IColorOperationCollection interface

Represents a collection of color transform operations.

public interface IColorOperationCollection : IGenericCloneable<IColorOperationCollection>, 
    IGenericCollection<IColorOperation>

Properties

NameDescription
Item { get; set; }Returns or sets the operation at the specified index. Read/write IColorOperation.

Methods

NameDescription
Add(ColorTransformOperation)Adds a new operation to the end of collection.
Add(ColorTransformOperation, float)Adds a new operation to the end of collection.
Clear()Removes all color operations.
Insert(int, ColorTransformOperation)Inserts the new operation to a collection.
Insert(int, ColorTransformOperation, float)Inserts the new operation to a collection.
RemoveAt(int)Removes the color operation from a collection.

See Also