Prado\Web\UI\WebControls\TImageMap::getHotSpots PHP Method

getHotSpots() public method

public getHotSpots ( ) : THotSpotCollection
return THotSpotCollection collection of hotspots defined in this imagemap.
    public function getHotSpots()
    {
        if (($hotspots = $this->getViewState('HotSpots', null)) === null) {
            $hotspots = new THotSpotCollection();
            $this->setViewState('HotSpots', $hotspots);
        }
        return $hotspots;
    }