/**
  * Set the Tooltip Control
  *
  * @api
  * @param Control $tooltipControl Tooltip Control
  * @return static
  */
 public function setTooltipControl(Control $tooltipControl)
 {
     $tooltipControl->checkId();
     $tooltipControl->setVisible(false);
     $this->tooltipControl = $tooltipControl;
     return $this;
 }