ActionCollection
Mutable list of Action items used to compose responses to user or document events.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.Actions
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
public class ActionCollection : IEnumerable<Action>, IEnumerable
Inheritance: objectActionCollection
Implements:
Methods
Adds the elements of the specified collection to the end of the current collection.
public void AddRange(IEnumerable<Action> items)
The collection of Action objects to add.
Removes all elements from the collection.
public void Clear()
Finds the first Action that matches the conditions defined by the specified predicate.
Finds all Action objects that match the conditions defined by the specified predicate.
Returns an enumerator that iterates through the collection.
public IEnumerator<Action> GetEnumerator()
An enumerator for the collection.
Implements:
Serves as a hash function for the ActionCollection type.
public override int GetHashCode()
A hash code for the current collection.
Overrides:
Removes the element at the specified index of the collection.
public void RemoveAt(int index)
The zero-based index of the element to remove.
Reverses the order of the elements in the collection.
public void Reverse()
Properties
Gets the number of Action elements contained in the collection.
public int Count { get; }