hobd.DynamicElement.HandleTap C# (CSharp) Method

HandleTap() public method

public HandleTap ( System point ) : void
point System
return void
        public virtual void HandleTap(System.Drawing.Point point)
        {
            clickTimer = new System.Threading.Timer(this.ClickedTimer, null, 500, 500);
            if (!parent.IsDisposed)
            parent.Invoke(new Action(parent.Invalidate));
              //drawingGraphics.Style(this.Style).Bold(true).DrawText(this.text + n);
            if (this.HandleTapAction != null)
            {
            this.HandleTapAction(this);
            }
        }