BrightIdeasSoftware.ObjectListView.HandleLButtonDoubleClick C# (CSharp) Method

HandleLButtonDoubleClick() protected method

Catch the Left Button double click event.
protected HandleLButtonDoubleClick ( Message &m ) : bool
m Message The m to be processed
return bool
        protected virtual bool HandleLButtonDoubleClick(ref Message m)
        {
            int x = m.LParam.ToInt32() & 0xFFFF;
            int y = (m.LParam.ToInt32() >> 16) & 0xFFFF;

            return this.ProcessLButtonDoubleClick(this.OlvHitTest(x, y));
        }
ObjectListView