HandleMouseDoubleClick() public method

Handle mouse double click to select word under the mouse.
public HandleMouseDoubleClick ( Control parent, MouseEventArgs e ) : void
parent System.Windows.Forms.Control the control hosting the html to set cursor and invalidate
e MouseEventArgs mouse event args
return void
Esempio n. 1
0
 /// <summary>
 /// Handle mouse double click to select word under the mouse.
 /// </summary>
 protected override void OnMouseDoubleClick(MouseEventArgs e)
 {
     base.OnMouseDoubleClick(e);
     if (_htmlContainer != null)
     {
         _htmlContainer.HandleMouseDoubleClick(this, e);
     }
 }