BrightIdeasSoftware.ObjectListView.ProcessRButtonDoubleClick C# (CSharp) Method

ProcessRButtonDoubleClick() protected method

Handle a right mouse double click at the given hit test location
Subclasses can override this to do something unique
protected ProcessRButtonDoubleClick ( OlvListViewHitTestInfo hti ) : bool
hti OlvListViewHitTestInfo
return bool
        protected virtual bool ProcessRButtonDoubleClick(OlvListViewHitTestInfo hti)
        {
            // If the user double clicked on a checkbox, ignore it
            return (hti.HitTestLocation == HitTestLocation.CheckBox);
        }
ObjectListView