SunsetHigh.CursorArrow.atTargetEntry C# (CSharp) Метод

atTargetEntry() приватный Метод

private atTargetEntry ( ) : bool
Результат bool
        private bool atTargetEntry()
        {
            if (this.targetEntry != null && this.panel != null)
            {
                if (this.getX() == this.panel.getAppearX() + this.targetEntry.getX() + ARROW_X_OFFSET &&
                    this.getY() == this.panel.getAppearY() + this.targetEntry.getY() + ARROW_Y_OFFSET)
                    return true;
            }
            return false;
        }