com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Interface IColorOperationCollection

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      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.
      • Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable

        iterator
      • Methods inherited from interface com.aspose.ms.System.Collections.ICollection

        copyTo, getSyncRoot, isSynchronized, size
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Method Detail

      • add

        IColorOperation add(int operation,
                            float parameter)

        Adds a new operation to the end of collection.

        Parameters:
        operation - Operation type.
        parameter - Operation's parameter.
        Returns:
        Added operation.
      • add

        IColorOperation add(int operation)

        Adds a new operation to the end of collection.

        Parameters:
        operation - Operation type.
        Returns:
        Added operation.
      • insert

        IColorOperation insert(int position,
                               int operation,
                               float parameter)

        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.
        Returns:
        Inserted operation.
      • insert

        IColorOperation insert(int position,
                               int operation)

        Inserts the new operation to a collection.

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

        void removeAt(int index)

        Removes the color operation from a collection.

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

        void clear()

        Removes all color operations.