ClassDescendantSelector
Represents a selector that matches an item that is a descendant of another item.
Definition
Namespace:Telerik.Reporting.Drawing
Assembly:Telerik.Reporting.dll
Syntax:
public class DescendantSelector : ISelector
Inheritance: objectDescendantSelector
Implements:
Constructors
DescendantSelector()
Initializes a new instance of the DescendantSelector.
Declaration
public DescendantSelector()
DescendantSelector(ISelector[])
Initializes a new instance of the DescendantSelector class with the specified selectors.
Properties
Selectors
Gets a SelectorCollection containing the selectors that define the descendance pattern used to match the item.
Declaration
public SelectorCollection Selectors { get; set; }
Property Value
Methods
Equals(object)
Internal use only
Declaration
public override bool Equals(object obj)
Parameters
obj
object
Returns
bool
Overrides
GetHashCode()
TODO: Add documentation.
Declaration
public override int GetHashCode()
Returns
int
Overrides
Match(ReportItemBase)
Matches a report item based on the descendance pattern defined by the Selectors
Declaration
public bool Match(ReportItemBase item)
Parameters
item
The ReportItemBase to match.
Returns
bool
true if the item matches the descendance pattern.
Implements
ToString()
This member overrides ToString()
Declaration
public override string ToString()
Returns
string
A string value describing the selector.
Overrides