Paint.ColorSelector.HandleTouch C# (CSharp) Method

HandleTouch() protected method

Handles a particular touch by the user
protected HandleTouch ( ITouchPoint touchPosition ) : void
touchPosition ITouchPoint
return void
        protected override void HandleTouch(ITouchPoint touchPosition)
        {
            for (int i = 0; i < GaugeCount; i++)
            {
                if (this.gaugeList[i].CheckTouchCollision(touchPosition) == true)
                {
                    break;
                }
            }
        }