com.aspose.slides
Class ColorTransformEx

java.lang.Object
  extended by com.aspose.slides.ColorTransformEx
All Implemented Interfaces:
com.aspose.ms.System.Collections.IEnumerable, java.lang.Iterable
Direct Known Subclasses:
ColorOperationExCollection

Deprecated.

@Deprecated
public abstract class ColorTransformEx
extends java.lang.Object
implements com.aspose.ms.System.Collections.IEnumerable

Represents collection of operations used to transform a color.


Method Summary
 int add(int operation)
          Deprecated.  Adds a new operation to the end of collection.
 int add(int operation, float parameter)
          Deprecated.  Adds a new operation to the end of collection.
 void clear()
          Deprecated.  Removes all color operations.
 ColorOperationEx get_Item(int index)
          Deprecated.  Returns or sets the operation at the specified index.
 int getCount()
          Deprecated.  Returns the number of operations in a collection.
 void insert(int position, int operation)
          Deprecated.  Inserts the new operation to a collection.
 void insert(int position, int operation, float parameter)
          Deprecated.  Inserts the new operation to a collection.
 com.aspose.ms.System.Collections.IEnumerator iterator()
          Deprecated.  Returns an enumerator for the entire collection.
 void removeAt(int index)
          Deprecated.  Removes the color operation from a collection.
 void set_Item(int index, ColorOperationEx value)
          Deprecated.  
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getCount

public int getCount()
Deprecated. 

Returns the number of operations in a collection. Read-only int.


get_Item

public ColorOperationEx get_Item(int index)
Deprecated. 

Returns or sets the operation at the specified index. Read/write ColorOperationEx.


set_Item

public void set_Item(int index,
                     ColorOperationEx value)
Deprecated. 

add

public int add(int operation,
               float parameter)
Deprecated. 

Adds a new operation to the end of collection.

Parameters:
operation - Operation type.
parameter - Operation's parameter.
Returns:
The index at which the operation has been added.

add

public int add(int operation)
Deprecated. 

Adds a new operation to the end of collection.

Parameters:
operation - Operation type.
Returns:
The index at which the operation has been added.

insert

public void insert(int position,
                   int operation,
                   float parameter)
Deprecated. 

Inserts the new operation to a collection.

Parameters:
position - The index at which the operation will be inserted.
operation - Operation type.
parameter - Operation's parameter.

insert

public void insert(int position,
                   int operation)
Deprecated. 

Inserts the new operation to a collection.

Parameters:
position - The index at which the operation will be inserted.
operation - Operation type.

removeAt

public void removeAt(int index)
Deprecated. 

Removes the color operation from a collection.

Parameters:
index - Index of a color operation to remove.

clear

public void clear()
Deprecated. 

Removes all color operations.


iterator

public com.aspose.ms.System.Collections.IEnumerator iterator()
Deprecated. 

Returns an enumerator for the entire collection.

Specified by:
iterator in interface com.aspose.ms.System.Collections.IEnumerable
Specified by:
iterator in interface java.lang.Iterable
Returns:
An IEnumerator for the entire collection.