Gets the Dimension with the ID dimensionId from this list.

Namespace: Endeca.Navigation
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.3.0.0 (6.3.0.853)

Syntax

C#
public virtual Dimension GetDimension(
	long dimensionId
)
Visual Basic
Public Overridable Function GetDimension ( _
	dimensionId As Long _
) As Dimension
Visual C++
public:
virtual Dimension^ GetDimension(
	long long dimensionId
)

Parameters

dimensionId
Type: System..::..Int64
ID of the Dimension to get.

Return Value

Dimension with the ID dimensionId or null if no dimension is found.

Remarks

Note that when dealing with multi-select dimensions, it is possible to have a list with multiple Dimension objects for the same dimension. In this case, several share the same ID and this method does not define which one is returned.

See Also