Namespace TallComponents.PDF.Layout.Actions
Class ActionCollection
An action collection.
Syntax
public class ActionCollection
: Object
,
IEnumerable
Properties
Int32 Count
Get the number of Actions actually contained in the ActionCollection
Action Item
Get an Action by zero-based index from the ActionCollection.
Methods
Int32 Add(Action)
Adds an Action to the end of the ActionCollection.
Void AddRange(Action[])
Adds the entries in an array of actions to the end of the ActionCollection.
Void Clear()
Removes all actions from the ActionCollection.
Boolean Contains(Action)
Determine whether an Action is in the ActionCollection.
IEnumerator GetEnumerator()
Implements strong typed IEnumerable<T>.GetEnumerator.
Int32 IndexOf(Action)
Searches for the specified Action in the ActionCollection.
Void Insert(Int32,Action)
Insert an on a specific place in this .
Void InsertRange(Int32,Action[])
Insert the entries in an array of Actions to the specific locations in the ActionCollection.
Void Remove(Action)
Removes an Action from this ActionCollection.
Void RemoveAt(Int32)
Removes an Action from the ActionCollection at the specified index.
Void RemoveRange(Action[])
Removes multiple actions from the collection.