Class CollectionReportParameters
- Namespace
- combit.Reporting.Dom
- Assembly
- combit.ListLabel31.CrossPlatform.dll
Represents a collection of ReportParameter objects, providing lookup by identifier and a factory method for creating new parameters.
public class CollectionReportParameters : DomCollectionBase<ReportParameter>, IList<ReportParameter>, ICollection<ReportParameter>, IReadOnlyList<ReportParameter>, IReadOnlyCollection<ReportParameter>, IEnumerable<ReportParameter>, IList, ICollection, IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged, IDomCollectionBase
- Inheritance
-
CollectionReportParameters
- Implements
- Derived
- Inherited Members
Properties
this[string]
Gets the report parameter with the specified identifier or null if not found.
public ReportParameter? this[string parameterName] { get; }
Parameters
parameterNamestringThe identifier of the parameter to retrieve.
Property Value
- ReportParameter
The ReportParameter with the specified identifier, or
nullif not found.
Methods
AddNew()
Adds a new report parameter to the collection.
public ReportParameter AddNew()
Returns
- ReportParameter
The created ReportParameter.