using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using FastReport.Utils; namespace FastReport { /// /// Holds the list of objects of type. /// public class PageCollection : FRCollectionBase { /// /// Gets or sets the element at the specified index. /// /// Index of an element. /// The element at the specified index. public PageBase this[int index] { get { return List[index] as PageBase; } set { List[index] = value; } } /// /// Initializes a new instance of the class with default settings. /// public PageCollection() : this(null) { } /// /// Initializes a new instance of the class with specified owner. /// public PageCollection(Base owner) : base(owner) { } } }