com.spire.presentation.collections
Class CommonBehaviorCollection

java.lang.Object
  extended by com.spire.presentation.collections.CommonBehaviorCollection
All Implemented Interfaces:
com.spire.ms.System.Collections.IEnumerable, java.lang.Iterable

public class CommonBehaviorCollection
extends java.lang.Object
implements com.spire.ms.System.Collections.IEnumerable

Represents collection of behavior effects.


Constructor Summary
CommonBehaviorCollection()
           
 
Method Summary
 int append(CommonBehavior item)
          Add new behavior to a collection.
 void clear()
          Removes all behaviors from a collection.
 CommonBehavior get(int index)
          Retirns a behavior at the specified index.
 int getCount()
          Gets the number of behaviors in a collection.
 void insert(int index, CommonBehavior item)
          Inserts new behavior to a collection at the specified index.
 com.spire.ms.System.Collections.IEnumerator iterator()
          Gets a itertor of the collection.
 void remove(CommonBehavior item)
          Removes specified behavior from a collection.
 void removeAt(int index)
          Removes behavior from a collection at the specified index.
 

Constructor Detail

CommonBehaviorCollection

public CommonBehaviorCollection()
Method Detail

getCount

public int getCount()
Gets the number of behaviors in a collection.

Returns:

append

public int append(CommonBehavior item)
Add new behavior to a collection.

Parameters:
item -
Returns:

insert

public void insert(int index,
                   CommonBehavior item)
Inserts new behavior to a collection at the specified index.

Parameters:
index -
item -

remove

public void remove(CommonBehavior item)
Removes specified behavior from a collection.

Parameters:
item -

removeAt

public void removeAt(int index)
Removes behavior from a collection at the specified index.

Parameters:
index -

clear

public void clear()
Removes all behaviors from a collection.


get

public CommonBehavior get(int index)
Retirns a behavior at the specified index.

Parameters:
index -
Returns:

iterator

public com.spire.ms.System.Collections.IEnumerator iterator()
Gets a itertor of the collection.

Returns: