Class Item
Represents the class that contains parameters of select command.
Inheritance
Namespace: Syncfusion.Olap.UWP.Reports
Assembly: Syncfusion.Olap.UWP.dll
Syntax
public class Item : Object
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. |
ElementValueWithIncludedMembers
Gets or sets the element value with included members which is used to maintain the check state of member editor while loading the XML report.
Declaration
public Element ElementValueWithIncludedMembers { get; set; }
Property Value
Type |
---|
Element |
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.
UseMetaTree
Gets or sets a value indicating whether the dimension element must be created using the check state of meta tree nodes or OLAP report.
Declaration
public bool UseMetaTree { get; set; }
Property Value
Type |
---|
System.Boolean |
Methods
Clone()
Clones this instance.
Declaration
public Item Clone()
Returns
Type | Description |
---|---|
Item | A copy of this instance. |