Search
ListContainer.getItemAt Method
See Also
 






Gets the item at the specified point.

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

 Syntax

JavaScript  Copy Code

function getItemAt (point)

 Parameters

point

Point. The point to check.

 Return Value

ListItem. The item at the specified point.

 Example

The following sample calls the getItemAt method of a ToolStrip control that derives from ListContainer to get the item that was clicked by the user.

JavaScript  Copy Code
var clickedItem = toolstrip.getItemAt(mousePosition);

 See Also