Class SelectedItem
This class represents the row, column and value of the selected items.
Inheritance
System.Object
SelectedItem
Namespace: Syncfusion.Windows.Controls.PivotGrid
Assembly: Syncfusion.PivotAnalysis.WPF.dll
Syntax
public class SelectedItem : Object
Constructors
SelectedItem()
Initializes a new instance of the SelectedItem class.
Declaration
public SelectedItem()
Properties
Column
Gets the selected column names.
Declaration
public string Column { get; }
Property Value
Type | Description |
---|---|
System.String | The column. |
ColumnList
Gets or sets the list of columns 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 the selected row names.
Declaration
public string Row { get; }
Property Value
Type | Description |
---|---|
System.String | The row. |
RowList
Gets or sets the list of rows 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 values 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. |