The easiest way would be to store the Points arrays in another Array.
You probably do not want to use *OnMouseButtonUp *here - it will interrupt your drawing every time you click. Perhaps you could add a check for the RightMouseButton in the OnMouseButtonDown. Every time the user pressed RMB, add Points array to another array - the OnPaint can draw the whole thing in a loop.