ClassReportParameterCollection
Represents a collection of ReportParameter objects.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
[TypeConverter("Telerik.Reporting.Design.ReportParameterCollectionConverter, Telerik.Reporting.Design, Version=19.3.26.121, Culture=neutral, PublicKeyToken=a9d7983dfcc261be")]
public class ReportParameterCollection : ReportParameterCollectionBase<ReportParameter>
Inheritance: objectCollection<ReportParameter>ReportParameterCollectionBase<ReportParameter>ReportParameterCollection
Inherited Members
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
name
string
A string value that will be used as Name for the newly created ReportParameter.
parameterType
A ReportParameterType value that will be used as Type for the newly created ReportParameter.
value
object
A object value that will be used as Value for the newly created ReportParameter. May be expression.
Returns
The newly created and added ReportParameter
ClearItems()
TODO: Add documentation.
Declaration
protected override void ClearItems()
Overrides
InsertItem(int, ReportParameter)
Inserts an item to the ReportParameterCollectionBase<TReportParameter> at the specified index.
Declaration
protected override void InsertItem(int index, ReportParameter item)
Parameters
index
int
The zero-based index at which item should be inserted.
item
The ReportParameter to insert into the ReportParameterCollectionBase<TReportParameter>.
Overrides
RemoveItem(int)
TODO: Add documentation.
Declaration
protected override void RemoveItem(int index)
Parameters
index
int
Overrides