using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using FastReport.Utils;
namespace FastReport.Dialog
{
///
/// Represents the collection of dialog components.
///
public class DialogComponentCollection : FRCollectionBase
{
///
/// Gets or sets a component.
///
/// The index of a component in this collection.
/// The component with specified index.
public DialogComponentBase this[int index]
{
get { return List[index] as DialogComponentBase; }
set { List[index] = value; }
}
///
/// Initializes a new instance of the class with default settings.
///
public DialogComponentCollection() : this(null)
{
}
///
/// Initializes a new instance of the class with default settings.
///
/// The owner of this collection.
public DialogComponentCollection(Base owner) : base(owner)
{
}
}
}