ComponentFactory.Krypton.Toolkit.KryptonListBox.IndexFromPoint C# (CSharp) Method

IndexFromPoint() public method

Returns the zero-based index of the item at the specified coordinates.
public IndexFromPoint ( Point p ) : int
p Point A Point object containing the coordinates used to obtain the item index.
return int
        public int IndexFromPoint(Point p)
        {
            return _listBox.IndexFromPoint(p);
        }

Same methods

KryptonListBox::IndexFromPoint ( int x, int y ) : int
KryptonListBox