com.aspose.slides
Class Links

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

public final class Links
extends java.lang.Object

Represents the collection of a links.


Method Summary
 Link addLink()
          Adds a new Link to the end of the collection.
 void clear()
          Removes all elements from the collection.
 Link get(int index)
          Gets the element at the specified index.
 void remove(int index)
          Removes the element at the specified index of the collection.
 int size()
          Gets the number of elements actually contained 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()
Gets the number of elements actually contained in a collection.

Returns:
The number of elements in a collection.

get

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

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

addLink

public Link addLink()
Adds a new Link to the end of the collection.

Returns:
New Link object.

clear

public void clear()
Removes all elements from the collection.


remove

public void remove(int index)
Removes the element at the specified index of the collection.

Parameters:
index - the zero-based index of the element to remove.