RectControl.Handle question

Can anyone confirm that a rectControl.handle will be unique and immutable in the window scope? Does this apply for both OSX and W32 platforms (I realize they’ll have different handle values across platforms).

Yes. The Handle is the value that the underlying OS uses to refer to the control, so it must be unique within your program space.

Thanks Tim.