From the Rect documentation:
LocalPoint(P As Point) As Point
Returns a new Point whose coordinates are local to the calling Rect.
LocalRect(P As Rect) As Rect
Returns a new Rect whose coordinates are local to the calling Rect.
What is local in this context? What is an example of what you would expect to be returned here?
Offset(DeltaX As Integer, DeltaY As Integer)
Moves the point the passed number of pixels. Positive numbers move the point down or to the right, negative move it up or to the left.
What point is being referred to here, the origin? Does this just basically move the entire rect in x,y direction?