ClassOlapGroupName
A class that represents an olap group name.
Definition
Namespace:Telerik.Pivot.Core.Olap
Assembly:Telerik.Pivot.Core.dll
Syntax:
[DataContract]
[SuppressMessage("Microsoft.Design", "CA1036:OverrideMethodsOnComparableTypes", Justification = "OlapGroupNames are not supposed to participate in comparison operations.")]
public class OlapGroupName : IComparable
Inheritance: objectOlapGroupName
Implements:
Constructors
OlapGroupName(string)
Initializes a new instance of the OlapGroupName class by provided group name.
Declaration
public OlapGroupName(string groupName)
Parameters
groupName
The group caption used to display the group in UI and compare the group with other groups. Sets the GroupCaption and GroupKey properties.
OlapGroupName(string, object)
Initializes a new instance of the OlapGroupName class by provided caption and a group key object.
Declaration
public OlapGroupName(string groupCaption, object groupKey)
Parameters
groupCaption
The group caption used to display the group in UI. Sets the GroupCaption property.
groupKey
The group key used to identify and compare the group with other groups. Sets the GroupKey property.
Properties
GroupCaption
Gets or sets the GroupCaption. Use setter only on groups created by you.
Declaration
[DataMember]
public string GroupCaption { get; set; }
Property Value
GroupKey
Gets or sets the GroupCaption. Use setter only on groups created by you.
Declaration
[DataMember]
public object GroupKey { get; set; }
Property Value
SortKeys
Gets the keys based on which Sorting is applied.
Declaration
[DataMember]
public Collection<string> SortKeys { get; }
Property Value