public interface IColorOperationCollection extends IGenericCloneable<IColorOperationCollection>, IGenericCollection<IColorOperation>
Represents a collection of color transform operations.
Modifier and Type | Method and Description |
---|---|
IColorOperation |
add(int operation)
Adds a new operation to the end of collection.
|
IColorOperation |
add(int operation,
float parameter)
Adds a new operation to the end of collection.
|
void |
clear()
Removes all color operations.
|
IColorOperation |
get_Item(int index)
Returns or sets the operation at the specified index.
|
IColorOperation |
insert(int position,
int operation)
Inserts the new operation to a collection.
|
IColorOperation |
insert(int position,
int operation,
float parameter)
Inserts the new operation to a collection.
|
void |
removeAt(int index)
Removes the color operation from a collection.
|
void |
set_Item(int index,
IColorOperation value)
Returns or sets the operation at the specified index.
|
cloneT
iterator
IColorOperation get_Item(int index)
Returns or sets the operation at the specified index.
Read/write IColorOperation
.
void set_Item(int index, IColorOperation value)
Returns or sets the operation at the specified index.
Read/write IColorOperation
.
IColorOperation add(int operation, float parameter)
Adds a new operation to the end of collection.
operation
- Operation type.parameter
- Operation's parameter.IColorOperation add(int operation)
Adds a new operation to the end of collection.
operation
- Operation type.IColorOperation insert(int position, int operation, float parameter)
Inserts the new operation to a collection.
position
- The index at which the operation will be inserted.operation
- Operation type.parameter
- Operation's parameter.IColorOperation insert(int position, int operation)
Inserts the new operation to a collection.
position
- The index at which the operation will be inserted.operation
- Operation type.void removeAt(int index)
Removes the color operation from a collection.
index
- Index of a color operation to remove.void clear()
Removes all color operations.