Class HiddenGroup
Represents a class that maintains information about the hidden group.
Inheritance
Inherited Members
Namespace: Syncfusion.Windows.Forms.PivotAnalysis
Assembly: Syncfusion.PivotAnalysis.Windows.dll
Syntax
public class HiddenGroup
Constructors
HiddenGroup()
Initializes a new instance of the HiddenGroup class.
Declaration
public HiddenGroup()
HiddenGroup(Int32, Int32, Int32, String)
Initializes a new instance of the HiddenGroup class with the specified from, to, level and group name parameters.
Declaration
public HiddenGroup(int from, int to, int level, string groupName)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | from | The start range value. |
System.Int32 | to | The end range value. |
System.Int32 | level | The level value. |
System.String | groupName | The group name. |
HiddenGroup(Int32, Int32, Int32, String, String)
Initializes a new instance of the HiddenGroup class with the specified from, to, level, group name and total header parameters.
Declaration
public HiddenGroup(int from, int to, int level, string groupName, string totalHeader)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | from | The start range value. |
System.Int32 | to | The end range value. |
System.Int32 | level | The level value. |
System.String | groupName | The group name. |
System.String | totalHeader | The total header value. |
Properties
From
Gets or sets the start range value.
Declaration
public int From { get; set; }
Property Value
Type |
---|
System.Int32 |
GroupName
Gets or sets the group name.
Declaration
public string GroupName { get; set; }
Property Value
Type |
---|
System.String |
ItemTotalHeader
Gets or sets the header of total item.
Declaration
public string ItemTotalHeader { get; set; }
Property Value
Type |
---|
System.String |
Level
Gets or sets the level value.
Declaration
public int Level { get; set; }
Property Value
Type |
---|
System.Int32 |
To
Gets or sets the end range value.
Declaration
public int To { get; set; }
Property Value
Type |
---|
System.Int32 |
Methods
Clone(HiddenGroup)
Creates a new object that is a copy of the HiddenGroup.
Declaration
public static HiddenGroup Clone(HiddenGroup ParentGroup)
Parameters
Type | Name | Description |
---|---|---|
HiddenGroup | ParentGroup | The object that is to be cloned. |
Returns
Type | Description |
---|---|
HiddenGroup | A new object that is a copy of HiddenGroup. |
ToString()
Returns a string that represents the current HiddenGroup.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A string that represents the current HiddenGroup. |