Gets and sets the filter associated with this expression.

Namespace: Endeca.Navigation.Analytics
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (0.0.0.0)

Syntax

C#
public virtual IFilter Filter { get; set; }
Visual Basic
Public Overridable Property Filter As IFilter
	Get
	Set
Visual C++
public:
virtual property IFilter^ Filter {
	IFilter^ get ();
	void set (IFilter^ value);
}

Field Value

The filter (of type IFilter) associated with this expression.

Remarks

For the getter version, only records in the associated aggregate that satisfy the returned filter contribute to the derived value represented by this expression.

For the setter version, adding a filter to this expression causes only records that satisfy the filter to be taken into account by this aggregate.

See Also