Class ListIndexInfo
Class that holds primarily the information on one row in a PivotTable. Additionally, these calls can be used to hold information on the row/column header structures.
Inheritance
System.Object
ListIndexInfo
Implements
System.IComparable<ListIndexInfo>
Namespace: Syncfusion.XlsIO.Implementation.PivotAnalysis
Assembly: Syncfusion.XlsIO.NET.dll
Syntax
public class ListIndexInfo : Object, IComparable<ListIndexInfo>
Constructors
ListIndexInfo()
Gets the type of the variable.
Declaration
public ListIndexInfo()
Properties
ParentInfo
Get the information about the parent row/column headers in the PivotTable.
Declaration
public ListIndexInfo ParentInfo { get; set; }
Property Value
Type |
---|
ListIndexInfo |
Type
Gets and sets the RowType.
Declaration
public RowType Type { get; set; }
Property Value
Type |
---|
RowType |
Methods
CompareTo(ListIndexInfo)
Compares the different values based on display.
Declaration
public int CompareTo(ListIndexInfo other)
Parameters
Type | Name | Description |
---|---|---|
ListIndexInfo | other | Holds information on row/column headers. |
Returns
Type | Description |
---|---|
System.Int32 | Return 0 if display is null else return -1. |
ToString()
Converts the data to string type.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | Combined String |
Implements
System.IComparable<>