Alteridem.WinTouch.GestureListener.OnPressAndTap C# (CSharp) Method

OnPressAndTap() private method

private OnPressAndTap ( GestureInfo info ) : bool
info GestureInfo
return bool
        private bool OnPressAndTap( GestureInfo info )
        {
            if ( PressAndTap != null )
            {
                var args = new PressAndTapEventArgs( info );
                PressAndTap( this, args );
                return args.Handled;
            }
            return false;
        }