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

OnProcessDialogKey() protected method

protected OnProcessDialogKey ( UIKeyEventArgs e ) : bool
e LayoutFarm.UI.UIKeyEventArgs
return bool
        protected override bool OnProcessDialogKey(UIKeyEventArgs e)
        {
            if (KeyDown != null)
            {
                KeyDown(this, e);
            }
            //return true if you want to stop event bubble to other 
            if (e.CancelBubbling)
            {
                return true;
            }
            else
            {
                return base.OnProcessDialogKey(e);
            }
        }
        protected override void OnKeyDown(UIKeyEventArgs e)