using System; using System.Collections.Generic; using System.Text; using FastReport.Utils; namespace FastReport.Map { /// /// Represents a collection of objects. /// public class LayerCollection : FRCollectionBase { #region Properties /// /// Gets a layer with specified index. /// /// Index of a layer. /// The layer with specified index. public MapLayer this[int index] { get { return List[index] as MapLayer; } set { List[index] = value; } } #endregion // Properties internal LayerCollection(Base owner) : base(owner) { } } }