Interface IItemSelector
An interface for views to implement (typically grids) that provide a mechanism for retrieving the selected items, and setting whether selections can be multiple or single
Namespace: LemonEdge.Client.Core.Commands.ViewCommands
Assembly: ClientCore.dll
Syntax
public interface IItemSelector
Properties
SelectedObjects
A list of all the currently user selected objects in this collection
Declaration
IEnumerable SelectedObjects { get; }
Property Value
Type | Description |
---|---|
System.Collections.IEnumerable |
SelectionMode
The type of user selection allowed for the items in this collection
Declaration
GridSelectionMode SelectionMode { get; set; }
Property Value
Type | Description |
---|---|
GridSelectionMode |
Events
SelectionChanged
An event indicating the user has changed the type of selection mode for these items
Declaration
event EventHandler SelectionChanged
Event Type
Type | Description |
---|---|
System.EventHandler |