Class SelectedItems<T>
An interface that holds list selected item.
Inheritance
System.Object
SelectedItems<T>
Namespace: Syncfusion.Blazor.Lists
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectedItems<T> : Object
Type Parameters
Name | Description |
---|---|
T | The generic type parameter. |
Constructors
SelectedItems()
Declaration
public SelectedItems()
Properties
Data
Specifies the selected item dataSource collection.
Declaration
public List<T> Data { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T> |
Index
Specifies index of the selected element. Available only in virtualization.
Declaration
public List<int> Index { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Int32> |
ParentId
Specifies the hierarchical parent id collection of the current view. Available only in nested list with checkbox enabled.
Declaration
public List<string> ParentId { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
Text
Specifies the selected item text collection.
Declaration
public List<string> Text { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |