Gets the item at the specified point.
Namespace: MindFusion.Common.UI
File: ListContainer.js
SyntaxJavaScript
Copy Code
|
|---|
function getItemAt (point) |
Point. The point to check.
ListItem. The item at the specified point.
ExampleThe 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