Class SelectorCollection
Represents a collection of objects that implement ISelector
Namespace: Telerik.Reporting.Drawing
Assembly: Telerik.Reporting.dll
Syntax
public class SelectorCollection : Collection<ISelector>, IList<ISelector>, ICollection<ISelector>, IList, ICollection, IReadOnlyList<ISelector>, IReadOnlyCollection<ISelector>, IEnumerable<ISelector>, IEnumerable
Constructors
SelectorCollection()
SelectorCollection(ISelector[])
Methods
AddRange(ISelector[])
Adds an array of selector objects to the collection.
Declaration
public void AddRange(ISelector[] selectors)
Parameters
ISelector[]
selectors
An array of ISelector objects to add to the collection. |
Remarks
The ISelector objects contained in the selectors array are appended to the end of the collection.
You can use the AddRange method to quickly add a group of ISelector objects to the collection instead of manually adding each ISelector to the collection using the System.Collections.ObjectModel.Collection`1.Add(`0) method.
To remove a ISelector that you previously added, use the System.Collections.ObjectModel.Collection`1.Remove(`0), System.Collections.ObjectModel.Collection`1.RemoveAt(System.Int32), or System.Collections.ObjectModel.Collection`1.Clear methods.
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
|
Returns
System.Boolean
|
Overrides
GetHashCode()
Declaration
public override int GetHashCode()
Returns
System.Int32
|