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
Inheritance: objectActionCollection
Implements:
Properties
Gets the number of Action elements contained in the collection.
public int Count { get; }
Methods
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.
public List<Action> FindAll(Predicate<Action> match)
The Predicate<T> delegate that defines the conditions of the elements to search for.
Returns:List<Action>
A List<T> containing all the Action objects that match the specified predicate, if found; otherwise, an empty list.
Returns an enumerator that iterates through the collection.
public IEnumerator<Action> GetEnumerator()
IEnumerator<Action>
An enumerator for the collection.
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()