Class SubsetElement
Represents the information needed for sub set element.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Olap.Reports
Assembly: Syncfusion.Olap.Base.dll
Syntax
public class SubsetElement : Element, ICloneable<Element>, ICloneable<SubsetElement>
Constructors
SubsetElement()
Initializes a new instance of the SubsetElement class.
Declaration
public SubsetElement()
SubsetElement(Int32)
Initializes a new instance of the SubsetElement class.
Declaration
public SubsetElement(int endIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | endIndex | The end index. |
SubsetElement(Int32, Int32)
Initializes a new instance of the SubsetElement class.
Declaration
public SubsetElement(int startIndex, int endIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | startIndex | The start index. |
System.Int32 | endIndex | The end index. |
Properties
EndIndex
Gets or sets the ending index.
Declaration
public int EndIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The ending index. |
StartIndex
Gets or sets the starting index.
Declaration
public int StartIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The starting index. |
Methods
Clone()
Clones this instance.
Declaration
public SubsetElement Clone()
Returns
Type | Description |
---|---|
SubsetElement | A copy of this instance. |