BrightIdeasSoftware.ObjectListView.ProcessRButtonDown C# (CSharp) Method

ProcessRButtonDown() protected method

Handle a left mouse down at the given hit test location
Subclasses can override this to do something unique
protected ProcessRButtonDown ( OlvListViewHitTestInfo hti ) : bool
hti OlvListViewHitTestInfo
return bool
        protected virtual bool ProcessRButtonDown(OlvListViewHitTestInfo hti)
        {
            if (hti.Item == null)
                return false;

            // Ignore clicks on checkboxes
            return (this.View == View.Details && hti.HitTestLocation == HitTestLocation.CheckBox);
        }
ObjectListView