Class ReportParameterCollection
Represents a collection of ReportParameter objects.
Inheritance
Inherited Members
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class ReportParameterCollection : ReportParameterCollectionBase<ReportParameter>, IList<ReportParameter>, ICollection<ReportParameter>, IList, ICollection, IReadOnlyList<ReportParameter>, IReadOnlyCollection<ReportParameter>, IEnumerable<ReportParameter>, IEnumerable
Constructors
ReportParameterCollection()
Declaration
public ReportParameterCollection()
Methods
Add(String, ReportParameterType, Object)
Creates a ReportParameter with specific settings and adds it to the ReportParameterCollection.
Declaration
public ReportParameter Add(string name, ReportParameterType parameterType, object value)
Parameters
System.String
name
A System.String value that will be used as Name for the newly created ReportParameter. |
ReportParameterType
parameterType
A ReportParameterType value that will be used as Type for the newly created ReportParameter. |
System.Object
value
A System.Object value that will be used as Value for the newly created ReportParameter. May be expression. |
Returns
ReportParameter
The newly created and added ReportParameter |
ClearItems()
Declaration
protected override void ClearItems()
Overrides
InsertItem(Int32, ReportParameter)
Inserts an item to the ReportParameterCollectionBase<TReportParameter> at the specified index.
Declaration
protected override void InsertItem(int index, ReportParameter item)
Parameters
System.Int32
index
The zero-based index at which item should be inserted. |
ReportParameter
item
The ReportParameter to insert into the ReportParameterCollectionBase<TReportParameter>. |
Overrides
RemoveItem(Int32)
Declaration
protected override void RemoveItem(int index)
Parameters
System.Int32
index
|