Class Item
Represents the class that contains parameters of select command.
Inheritance
Implements
Inherited Members
Namespace: Syncfusion.Olap.Reports
Assembly: Syncfusion.Olap.Base.dll
Syntax
public class Item : ICloneable<Item>
Constructors
Item()
Initializes a new instance of the Item class.
Declaration
public Item()
Item(Element)
Initializes a new instance of the Item class.
Declaration
public Item(Element elementValue)
Parameters
Type | Name | Description |
---|---|---|
Element | elementValue | The element value. |
Item(Element, Element)
Initializes a new instance of the Item class.
Declaration
public Item(Element elementValue, Element excludedElementValue)
Parameters
Type | Name | Description |
---|---|---|
Element | elementValue | The element value. |
Element | excludedElementValue | The excluded element value. |
Properties
Axis
Gets or sets the axis position.
Declaration
public AxisPosition Axis { get; set; }
Property Value
Type | Description |
---|---|
AxisPosition | The axis position |
ElementValue
Gets or sets the element value.
Declaration
public Element ElementValue { get; set; }
Property Value
Type | Description |
---|---|
Element | The element value. |
ExcludedElementValue
Gets or sets the excluded element value.
Declaration
public Element ExcludedElementValue { get; set; }
Property Value
Type | Description |
---|---|
Element | The excluded element value. |
IsFilterOrSortOn
Gets or sets a value indicating whether this instance is for filtering or sorting.
Declaration
public bool IsFilterOrSortOn { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
ItemName
Gets or sets the name of the item.
Declaration
public string ItemName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the item. |
Remarks
Its only valid for Non-OLAP data i.e., for flat table pivot data population.
Methods
Clone()
Clones this instance.
Declaration
public Item Clone()
Returns
Type | Description |
---|---|
Item | A copy of this instance. |