CapgeminiSurface.MenuCard.OnContactDown C# (CSharp) Method

OnContactDown() protected method

Override of ContactDown on ManuCard. If Card is in rotation state the SetZorder method is called.
protected OnContactDown ( ContactEventArgs e ) : void
e ContactEventArgs
return void
        protected override void OnContactDown(ContactEventArgs e)
        {
            if (!CurrentState.Equals(States.StateRotation))
            {
                e.Handled = true;
            }

            SetZorder(this, e);
        }