LayoutFarm.CustomWidgets.EaseBox.OnDoubleClick C# (CSharp) Method

OnDoubleClick() protected method

protected OnDoubleClick ( UIMouseEventArgs e ) : void
e LayoutFarm.UI.UIMouseEventArgs
return void
        protected override void OnDoubleClick(UIMouseEventArgs e)
        {
            if (this.MouseDoubleClick != null)
            {
                MouseDoubleClick(this, e);
            }
            if (this.AcceptKeyboardFocus)
            {
                this.Focus();
            }
        }
        protected override void OnMouseDown(UIMouseEventArgs e)