SourceGrid.GridVirtual.OnMouseDoubleClick C# (CSharp) Method

OnMouseDoubleClick() protected method

protected OnMouseDoubleClick ( MouseEventArgs e ) : void
e MouseEventArgs
return void
        protected override void OnMouseDoubleClick(MouseEventArgs e)
        {
            base.OnMouseDoubleClick(e);

            if (MouseDownPosition.IsEmpty() == false)
            {
                Cells.ICellVirtual mouseDownCell = GetCell(MouseDownPosition);
                if (mouseDownCell != null)
                    Controller.OnDoubleClick(new CellContext(this, MouseDownPosition, mouseDownCell), e);
            }
        }