dimension = $dimension; } /** * @return Size */ public function getDimension() { return $this->dimension; } /** * Upper-left corner coordinates of the popup window. Applicable if * positionType is COORDINATES. * * @param OffsetPosition $offset */ public function setOffset(OffsetPosition $offset) { $this->offset = $offset; } /** * @return OffsetPosition */ public function getOffset() { return $this->offset; } /** * Popup window position either centered or at specific coordinate. * * Accepted values: CENTER, COORDINATES * * @param self::POSITION_TYPE_* $positionType */ public function setPositionType($positionType) { $this->positionType = $positionType; } /** * @return self::POSITION_TYPE_* */ public function getPositionType() { return $this->positionType; } /** * Whether to display the browser address bar. * * @param bool $showAddressBar */ public function setShowAddressBar($showAddressBar) { $this->showAddressBar = $showAddressBar; } /** * @return bool */ public function getShowAddressBar() { return $this->showAddressBar; } /** * Whether to display the browser menu bar. * * @param bool $showMenuBar */ public function setShowMenuBar($showMenuBar) { $this->showMenuBar = $showMenuBar; } /** * @return bool */ public function getShowMenuBar() { return $this->showMenuBar; } /** * Whether to display the browser scroll bar. * * @param bool $showScrollBar */ public function setShowScrollBar($showScrollBar) { $this->showScrollBar = $showScrollBar; } /** * @return bool */ public function getShowScrollBar() { return $this->showScrollBar; } /** * Whether to display the browser status bar. * * @param bool $showStatusBar */ public function setShowStatusBar($showStatusBar) { $this->showStatusBar = $showStatusBar; } /** * @return bool */ public function getShowStatusBar() { return $this->showStatusBar; } /** * Whether to display the browser tool bar. * * @param bool $showToolBar */ public function setShowToolBar($showToolBar) { $this->showToolBar = $showToolBar; } /** * @return bool */ public function getShowToolBar() { return $this->showToolBar; } /** * Title of popup window. * * @param string $title */ public function setTitle($title) { $this->title = $title; } /** * @return string */ public function getTitle() { return $this->title; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PopupWindowProperties::class, 'Google_Service_Dfareporting_PopupWindowProperties');