com.aspose.slides.pptx
Class ImageTransformEx

java.lang.Object
  extended by com.aspose.slides.pptx.ImageTransformEx

public class ImageTransformEx
extends java.lang.Object

Represents a collection of effects applied to an image.


Method Summary
 int add(ImageTransformOperationEx operation)
          Adds a new image effect to the end of a collection.
 void clear()
          Removes all image effects from a collection.
 PresentationEx getPresentation()
          Returns the parent presentation for an ImageTransformEx collection.
 BaseSlideEx getSlide()
          Returns the parent slide for an ImageTransformEx collection.
 java.util.Iterator iterator()
          Returns an iterator for the entire collection.
 void remove(int index)
          Removes an image effect from a collection at the specified index.
 int size()
          Returns the number of image effects in a collection.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

size

public int size()
Returns the number of image effects in a collection.


remove

public void remove(int index)
Removes an image effect from a collection at the specified index.

Parameters:
index - index of an image effect to remove.

clear

public void clear()
Removes all image effects from a collection.


add

public int add(ImageTransformOperationEx operation)
Adds a new image effect to the end of a collection.

Parameters:
operation - The image effect to add to the end of a collection.
Returns:
Index of a new image effect in a collection.

iterator

public java.util.Iterator iterator()
Returns an iterator for the entire collection.


getSlide

public BaseSlideEx getSlide()
Returns the parent slide for an ImageTransformEx collection.


getPresentation

public PresentationEx getPresentation()
Returns the parent presentation for an ImageTransformEx collection.