LayoutFarm.Demo.HtmlPanel.OnMouseDown C# (CSharp) Method

OnMouseDown() protected method

Handle mouse down to handle selection.
protected OnMouseDown ( MouseEventArgs e ) : void
e MouseEventArgs
return void
        protected override void OnMouseDown(MouseEventArgs e)
        {
            this.isMouseDown = true;
            this.isDragging = false;
            base.OnMouseDown(e);
            this._htmlInputEventAdapter.MouseDown(CreateMouseEventArg(e));
            PaintMe(null);
            //this.Invalidate();
        }
        /// <summary>