Class PropertyFilterDescriptionBase
Report FilterDescription implementation.
Inheritance
Inherited Members
Namespace: Telerik.Pivot.Core
Assembly: Telerik.WinControls.PivotGrid.dll
Syntax
public abstract class PropertyFilterDescriptionBase : FilterDescription, INotifyPropertyChanged, ISupportInitialize, IObservableServiceProvider, IServiceProvider, IEditable, IDescriptionBase, INamed, IInitializeDescription, IReportFilterDescription, IFilteringDescription, IDistinctValuesDescription, IConditionFactory, IFilterOperatorsProvider
Constructors
PropertyFilterDescriptionBase()
Declaration
protected PropertyFilterDescriptionBase()
Properties
Condition
Gets or sets the Condition used to filter the groups.
Declaration
public LocalCondition Condition { get; set; }
Property Value
|
LocalCondition
|
PropertyName
Gets or sets a value identifying a property on the grouped items.
Declaration
public virtual string PropertyName { get; set; }
Property Value
|
System.String
|
Methods
CloneCore(Cloneable)
Makes the instance a clone (deep copy) of the specified Cloneable.
Declaration
protected override sealed void CloneCore(Cloneable source)
Parameters
|
Cloneable
source
The object to clone. |
Overrides
Remarks
Notes to Inheritors If you derive from Cloneable, you may need to override this method to copy all properties. It is essential that all implementations call the base implementation of this method (if you don't call base you should manually copy all needed properties including base properties).
CloneOverride(Cloneable)
Makes the instance a clone (deep copy) of the specified Cloneable.
Declaration
protected abstract void CloneOverride(Cloneable source)
Parameters
|
Cloneable
source
The object to clone. |
Remarks
Notes to Inheritors If you derive from Cloneable, you need to override this method to copy all properties. It is essential that all implementations call the base implementation of this method (if you don't call base you should manually copy all needed properties including base properties).
ExtractValue(Object)
Return a value the item.
Declaration
protected object ExtractValue(object item)
Parameters
|
System.Object
item
The item. |
Returns
|
System.Object
A name for the group that would contain the |
GetDisplayName()
Gets the display-friendly name.
Declaration
protected override string GetDisplayName()
Returns
|
System.String
A System.String name. |
Overrides
GetFilterItem(Object)
Gets the item that is used in filtering for the provided fact.
Declaration
protected virtual object GetFilterItem(object fact)
Parameters
|
System.Object
fact
The data to be filtered. |
Returns
|
System.Object
The value used for filtering. |
See Also
GetUniqueName()
Returns the member name for this description.
Declaration
public override string GetUniqueName()
Returns
|
System.String
|
Overrides
PassesFilter(Object)
Checks if a value generated from GetFilterItem(Object) passes the filter.
Declaration
protected virtual bool PassesFilter(object value)
Parameters
|
System.Object
value
The value to filter. |
Returns
|
System.Boolean
True if the |
See Also
Explicit Interface Implementations
IFilteringDescription.FilteringType
Declaration
Type IFilteringDescription.FilteringType { get; }
Returns
|
System.Type
|
Implements
IFilteringDescription.PrefersDistinct
Declaration
bool IFilteringDescription.PrefersDistinct { get; }
Returns
|
System.Boolean
|
Implements
IFilterOperatorsProvider.GetAvailableConditions()
Declaration
IEnumerable<object> IFilterOperatorsProvider.GetAvailableConditions()
Returns
|
System.Collections.Generic.IEnumerable<System.Object>
|
Implements
IConditionFactory.CreateCondition(Type)
Declaration
Condition IConditionFactory.CreateCondition(Type conditionType)
Parameters
|
System.Type
conditionType
|
Returns
|
Condition
|
Implements
IDistinctValuesDescription.GetDisctinctValuesProvider()
Declaration
DistinctValuesProvider IDistinctValuesDescription.GetDisctinctValuesProvider()
Returns
|
DistinctValuesProvider
|