BrightIdeasSoftware.ObjectListView.HandleRButtonDown C# (CSharp) Method

HandleRButtonDown() protected method

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

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