Gets the dimensions for the descriptors for this navigation.

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

Syntax

C#
public virtual DimensionList DescriptorDimensions { get; }
Visual Basic
Public Overridable ReadOnly Property DescriptorDimensions As DimensionList
	Get
Visual C++
public:
virtual property DimensionList^ DescriptorDimensions {
	DimensionList^ get ();
}

Field Value

The dimensions of the descriptors of this navigation query.

Remarks

The descriptors are the set of dimension values that formulate the query that limit the record results of this navigation query. If there are no descriptors, an empty dimension list will be returned. Unlike all other dimension collections presented by the navigation, this collection is NOT in dimension order. Instead this collection IS presented in descriptor order specified by the navigation descriptors of the query, which in turn is most likely generated from SelectRefinement(Navigation, DimVal) which places the descriptors in selection order, that is the order with which the user made their selections.

See Also