Class ReportParameterCollectionBase<TReportParameter>
Represents a base class for collection of IReport
Inheritance
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public abstract class ReportParameterCollectionBase<TReportParameter> : Collection<TReportParameter>, IList<TReportParameter>, ICollection<TReportParameter>, IList, ICollection, IReadOnlyList<TReportParameter>, IReadOnlyCollection<TReportParameter>, IEnumerable<TReportParameter>, IEnumerable where TReportParameter : class, IReportParameter
Type Parameters
TReportParameter
|
Constructors
ReportParameterCollectionBase()
Declaration
protected ReportParameterCollectionBase()
Properties
Item[String]
Gets a report parameter by name.
Declaration
public TReportParameter this[string name] { get; }
Parameters
System. The name of the report parameter. |
Property Value
TReport A report parameter if found; otherwise null (Nothing) |
Methods
AddRange(IEnumerable<TReportParameter>)
Adds an enumerable of Report
Declaration
public void AddRange(IEnumerable<TReportParameter> enumerable)
Parameters
System. An enumerable of Report |
Remarks
The Report
Contains(String)
Determines whether the Report
Declaration
public bool Contains(string name)
Parameters
System. A System. |
Returns
System. Returns a System. |
IndexOf(String)
Determines the index of a specific report parameter in the
Report
Declaration
public int IndexOf(string name)
Parameters
System. The parameter name used to locate the report
parameter in the Report |
Returns
System. The index of report parameter if found in the
Report |