Search
ListContainer.selection Property
See Also
 






Gets the collection of selected items.

Namespace: MindFusion.Common.UI
File: ListContainer.js

 Syntax

JavaScript  Copy Code

get selection() {}

 Property Value

ObservableCollection. The collection of selected items.

 Example

The following code un-selects all currently selected items from a ToolStrip, which inherits ListContainer.

JavaScript  Copy Code
toolstrip.selection.clear();

 See Also