123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Collections;
- using FastReport.Utils;
- namespace FastReport.Data
- {
- /// <summary>
- /// Represents the collection of <see cref="CubeSourceBase"/> objects.
- /// </summary>
- public class CubeSourceCollection : FRCollectionBase
- {
- /// <summary>
- /// Gets or sets a data source.
- /// </summary>
- /// <param name="index">The index of a data source in this collection.</param>
- /// <returns>The data source with specified index.</returns>
- public CubeSourceBase this[int index]
- {
- get { return List[index] as CubeSourceBase; }
- set { List[index] = value; }
- }
- /// <summary>
- /// Finds a CubeSource by its name.
- /// </summary>
- /// <param name="name">The name of a CubeSource.</param>
- /// <returns>The <see cref="CubeSourceBase"/> object if found; otherwise <b>null</b>.</returns>
- public CubeSourceBase FindByName(string name)
- {
- foreach (CubeSourceBase c in this)
- {
- if (c.Name == name)
- return c;
- }
- return null;
- }
- /// <summary>
- /// Finds a CubeSource by its alias.
- /// </summary>
- /// <param name="alias">The alias of a CubeSource.</param>
- /// <returns>The <see cref="CubeSourceBase"/> object if found; otherwise <b>null</b>.</returns>
- public CubeSourceBase FindByAlias(string alias)
- {
- foreach (CubeSourceBase c in this)
- {
- if (c.Alias == alias)
- return c;
- }
- return null;
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="CubeSourceCollection"/> class with default settings.
- /// </summary>
- /// <param name="owner">The owner of this collection.</param>
- public CubeSourceCollection(Base owner) : base(owner)
- {
- }
- }
- }
|