Gets the Dimension with the ID dimensionId from this list.

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

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 the dimension is not found.

Remarks

If the dimension is not found in this list, null is returned. Note that when dealing with multi-select dimensions, it is possible for the list to have 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