Class SelectedItem
This class represents the Column, Row and Value of SelectedItem
Inheritance
System.Object
SelectedItem
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)
Namespace: Syncfusion.Windows.Grid.Olap
Assembly: Syncfusion.OlapGrid.WPF.dll
Syntax
public class SelectedItem
Constructors
SelectedItem()
Initializes a new instance of the SelectedItem class.
Declaration
public SelectedItem()
Properties
Column
Gets the column.
Declaration
public string Column { get; }
Property Value
Type | Description |
---|---|
System.String | The column. |
ColumnList
Gets or sets the list of column of Selected Item.
Declaration
public List<string> ColumnList { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The column. |
FormattedValue
Gets or sets the formatted value.
Declaration
public string FormattedValue { get; }
Property Value
Type | Description |
---|---|
System.String | The formatted value. |
Row
Gets or sets the row.
Declaration
public string Row { get; }
Property Value
Type | Description |
---|---|
System.String | The row. |
RowList
Gets or sets the list of row of Selected Item.
Declaration
public List<string> RowList { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The row. |
Value
Gets or sets the value of Selected Item.
Declaration
public string Value { get; }
Property Value
Type | Description |
---|---|
System.String | The value. |
Methods
ToString()
Returns a System.String that represents this instance.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String that represents this instance. |
Overrides
System.Object.ToString()