Class SelectedItem
Represents the class that contains the information of selected cell.
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.Forms.PivotAnalysis
Assembly: Syncfusion.PivotAnalysis.Windows.dll
Syntax
public class SelectedItem
Constructors
SelectedItem()
Initializes a new instance of the SelectedItem class.
Declaration
public SelectedItem()
Properties
Column
Gets the selected column value.
Declaration
public string Column { get; }
Property Value
Type | Description |
---|---|
System.String | The selected column value. |
ColumnList
Gets the list of selected column values.
Declaration
public List<string> ColumnList { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The selected column values list. |
Row
Gets the selected row value.
Declaration
public string Row { get; }
Property Value
Type | Description |
---|---|
System.String | The selected row value. |
RowList
Gets the list of selected row values.
Declaration
public List<string> RowList { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The selected row values list. |
Methods
ToString()
Returns a string representation for the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String that represents this instance. |
Overrides
System.Object.ToString()