Clearing an Image Well

How do I ‘clear’ an Image Well? There’s no .clear option and imgExample.Image = “” doesn’t work.
Must be something easy, but can’t figure it out.

Thanks,
Bert.

The Image property of the ImageWell is a Picture instance, not a String. So to clear the ImageWell just set the Image property to Nil.

Haha, never heard of the term Nil before. But imgShowIcon.image = Nil works!
Thanks.