com.aspose.slides
Class PictureBullets

java.lang.Object
  extended by com.aspose.slides.PictureBullets

public final class PictureBullets
extends java.lang.Object

Represents the collection of PictureBullets in a presentation.


Method Summary
 short add(PictureBullet pictureBullet)
          Adds a PictureBullet to the end of a collection.
 PictureBullet get(int index)
          Gets the element at the specified index.
 java.util.Iterator iterator()
          Returns an iterator for the entire collection.
 int size()
          Returns the number of elements in the 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 elements in the collection.

Returns:
The number of elements in the collection.

get

public PictureBullet get(int index)
Gets the element at the specified index.

Parameters:
index - index of element to return.
Returns:
The element at the specified index.

add

public short add(PictureBullet pictureBullet)
Adds a PictureBullet to the end of a collection.

Parameters:
pictureBullet - The PictureBullet to be added to the end of the collection.
Returns:
Index of the added PictureBullet.

iterator

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

Returns:
An iterator for the entire collection.