ColorOperationCollection

ColorOperationCollection class

Represents a collection of color transform operations.

public sealed class ColorOperationCollection : IColorOperationCollection

Properties

NameDescription
Count { get; }Returns the number of operations in a collection. Read-only Int32.
IsSynchronized { get; }Returns a value indicating whether access to the collection is synchronized (thread-safe). Read-only Boolean.
Item { get; set; }Returns or sets the operation at the specified index. Read/write ColorOperation.
SyncRoot { get; }Returns a synchronization root. Read-only Object.

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.
Clone()Creates a copy of a ColorOperationCollection collection.
CloneT()Clones current object
CopyTo(Array, int)Copies all elements from the collection to the specified array.
GetEnumerator()Returns an enumerator that iterates through the collection.
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