ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * WorkbookChartPointFormat File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ namespace Microsoft\Graph\Model; /** * WorkbookChartPointFormat class * * @category Model * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ class WorkbookChartPointFormat extends Entity { /** * Gets the fill * Represents the fill format of a chart, which includes background formatting information. Read-only. * * @return WorkbookChartFill|null The fill */ public function getFill() { if (array_key_exists("fill", $this->_propDict)) { if (is_a($this->_propDict["fill"], "\Microsoft\Graph\Model\WorkbookChartFill") || is_null($this->_propDict["fill"])) { return $this->_propDict["fill"]; } else { $this->_propDict["fill"] = new WorkbookChartFill($this->_propDict["fill"]); return $this->_propDict["fill"]; } } return null; } /** * Sets the fill * Represents the fill format of a chart, which includes background formatting information. Read-only. * * @param WorkbookChartFill $val The fill * * @return WorkbookChartPointFormat */ public function setFill($val) { $this->_propDict["fill"] = $val; return $this; } }
cải xoăn