Class SelectedItem
Represents the selected item which contains information of row, column and value.
Inheritance
System.Object
SelectedItem
Namespace: Syncfusion.UI.Xaml.PivotGrid
Assembly: Syncfusion.SfPivotGrid.UWP.dll
Syntax
public class SelectedItem : Object
Constructors
SelectedItem()
Initializes a new instance of the SelectedItem class.
Declaration
public SelectedItem()
Properties
Column
Gets the column of selected item.
Declaration
public string Column { get; }
Property Value
Type |
---|
System.String |
ColumnList
Gets or sets the list of columns that are selected.
Declaration
public List<string> ColumnList { get; }
Property Value
Type |
---|
System.Collections.Generic.List<System.String> |
FormattedValue
Gets or sets the formatted value of selected item.
Declaration
public string FormattedValue { get; }
Property Value
Type |
---|
System.String |
Row
Gets the row of selected item.
Declaration
public string Row { get; }
Property Value
Type |
---|
System.String |
RowList
Gets or sets the list of rows that are selected.
Declaration
public List<string> RowList { get; }
Property Value
Type |
---|
System.Collections.Generic.List<System.String> |
Value
Gets or sets the value of selected item.
Declaration
public string Value { get; }
Property Value
Type |
---|
System.String |
Methods
ToString()
Returns a System.String that represents this instance.
Declaration
public override string ToString()
Returns
Type |
---|
System.String |