Namespace TallComponents.PDF.Transforms
Class TransformCollection
A collection of transforms that can be applied as a single transform.
Syntax
        public class TransformCollection
                 : Transform
            ,
                IEnumerable<Transform>
    
        Constructors
Properties
Int32 Count
            Gets the number of Transforms actually contained in the TransformCollection.
        
        
            Transform Item
            Gets a Transform by zero-based index from the TransformCollection.
        
Methods
Void Add(Transform)
            Add a new transform.
        
        
            Void AddRange(Transform[])
            Adds the entries in an array of transforms to the end of the TransformCollection.
        
        
            Void Clear()
            Removes all transforms from the TransformCollection.
        
        
            Boolean Contains(Transform)
            Determines whether a Transform is in the TransformCollection.
        
        
            IEnumerator<Transform> GetEnumerator()
            Implements strongly typed IEnumerable<T>.GetEnumerator.
        
        
            Int32 IndexOf(Transform)
            Returns the index of the specified transform.
        
        
            Void Insert(Int32,Transform)
            Inserts a transform into the TransformCollection at the specified index.
        
        
            Boolean Remove(Transform)
            Removes a Transform from this TransformCollection.
        
        
            Void RemoveAt(Int32)
            Removes a Transform from the TransformCollection at the specified index.