Class HiddenGroup
Class used to hold the properties of each hidden group.
Inheritance
System.Object
HiddenGroup
Namespace: Syncfusion.XlsIO.Implementation.PivotAnalysis
Assembly: Syncfusion.XlsIO.NET.dll
Syntax
public class HiddenGroup : Object
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 and it contains the properties needed for the hidden group.
Declaration
public HiddenGroup(int from, int to, int level, string groupName)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | from | |
System.Int32 | to | |
System.Int32 | level | |
System.String | groupName |
HiddenGroup(Int32, Int32, Int32, String, String)
Constructor that holds the information needed for hidden group.
Declaration
public HiddenGroup(int from, int to, int level, string groupName, string totalHeader)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | from | Hidden group starts with. |
System.Int32 | to | Hidden group ends with. |
System.Int32 | level | The level of hidden group. |
System.String | groupName | Name of the hidden group. |
System.String | totalHeader | The total header of hidden group. |
Properties
From
Gets or sets where the HiddenGroup starts with.
Declaration
public int From { get; set; }
Property Value
Type |
---|
System.Int32 |
GroupName
Gets or sets the name of HiddenGroup.
Declaration
public string GroupName { get; set; }
Property Value
Type |
---|
System.String |
ItemTotalHeader
Gets or sets the total header of HiddenGroup.
Declaration
public string ItemTotalHeader { get; set; }
Property Value
Type |
---|
System.String |
Level
Gets or sets the level of HiddenGroup.
Declaration
public int Level { get; set; }
Property Value
Type |
---|
System.Int32 |
To
Gets or sets where the HiddenGroup ends with.
Declaration
public int To { get; set; }
Property Value
Type |
---|
System.Int32 |
Methods
Clone(HiddenGroup)
Clones the specified hidden group.
Declaration
public HiddenGroup Clone(HiddenGroup ParentGroup)
Parameters
Type | Name | Description |
---|---|---|
HiddenGroup | ParentGroup |
Returns
Type |
---|
HiddenGroup |
ToString()
Converts the hidden group start and end values into string format.
Declaration
public override string ToString()
Returns
Type |
---|
System.String |