Label mouse events "transparency"

Is is possible to make a Label (and other components) “transparent” to mouse clicks? This would mean that not the Label’s mouseDown() is called, but the mouseDown() of the underlying component.

use Component::setInterceptsMouseClicks()

Excellent! Thanks!