ParameterCollection
Represents a collection of Parameter objects.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
[TypeConverter("Telerik.Reporting.Design.ParameterCollectionConverter, Telerik.Reporting.Design, Version=20.1.26.615, Culture=neutral, PublicKeyToken=a9d7983dfcc261be")]
public class ParameterCollection : Collection<Parameter>
Inheritance: objectCollection<Parameter>ParameterCollection
Constructors
public ParameterCollection()
Properties
Gets a Parameter by name.
public Parameter this[string name] { get; }
The name of the parameter.
Property Value:A parameter if found; otherwise null (Nothing)
Methods
Creates a Parameter with specific settings and adds it to the ParameterCollection or updates an existing one.
Adds or updates a sequence of Parameter objects in the ParameterCollection.
public void AddRange(IEnumerable<Parameter> collection)
An enumerable collection of Parameter objects to add to or update in the ParameterCollection.
The Parameter objects from the collection are either appended to the end of the ParameterCollection or updated in place if they already exist.
Contains(string)
bool
Determines whether the ParameterCollection contains a parameter with a specific name.
public bool Contains(string name)
A string that specifies the parameter name for which to search the elements of the ParameterCollection.
Returns:bool
Returns a bool value indicating whether the ParameterCollection object contains a parameter with the specified name.
Equals(object)
bool
TODO: Add documentation.
public override bool Equals(object obj)
bool
Overrides:
TODO: Add documentation.
TODO: Add documentation.
public override int GetHashCode()
int
Overrides:
Determines the index of a specific parameter in the ParameterCollection.
public int IndexOf(string name)
The parameter name used to locate the parameter in the ParameterCollection.
Returns:int
The index of parameter if found in the ParameterCollection; otherwise, -1.
TODO: Add documentation.
protected override void InsertItem(int index, Parameter item)
Overrides:
TODO: Add documentation.
protected override void SetItem(int index, Parameter item)
Overrides:
ToString()
string
TODO: Add documentation.
public override string ToString()
string
Overrides: