Returns the string form of this GroupBy.

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

Syntax

C#
public override string ToString()
Visual Basic
Public Overrides Function ToString As String
Visual C++
public:
virtual String^ ToString() override

Return Value

The string form of this GroupBy.

Implements

IQueryNode..::..ToString()()()()

Remarks

The GroupBy format is:
CopyC#
"<i>grouping-key-name</i>"
if no depth has been set.

The format:

CopyC#
"<i>grouping-key-name</i>:<i>depth</i>"
is used if depth has been specified.

Examples

The string:
CopyC#
Region:2
is returned if the grouping key is a dimension named Region with a grouping level of 2 (that is, two levels below the root of the dimension hierarchy).

See Also