ACPAddIn.Notification.updateLocation C# (CSharp) Method

updateLocation() public method

public updateLocation ( Point p, Size size ) : void
p Point
size Size
return void
        public void updateLocation(Point p, Size size)
        {
            this.Location = new Point(p.X + size.Width - this.Width - 30, p.Y + size.Height - this.Height - 32);
        }