whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
vendor
/
microsoft
/
microsoft-graph
/
src
/
Model
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/vendor/microsoft/microsoft-graph/src/Model/WorkbookWorksheet.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * WorkbookWorksheet 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; /** * WorkbookWorksheet 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 WorkbookWorksheet extends Entity { /** * Gets the name * The display name of the worksheet. * * @return string|null The name */ public function getName() { if (array_key_exists("name", $this->_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * The display name of the worksheet. * * @param string $val The name * * @return WorkbookWorksheet */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } /** * Gets the position * The zero-based position of the worksheet within the workbook. * * @return int|null The position */ public function getPosition() { if (array_key_exists("position", $this->_propDict)) { return $this->_propDict["position"]; } else { return null; } } /** * Sets the position * The zero-based position of the worksheet within the workbook. * * @param int $val The position * * @return WorkbookWorksheet */ public function setPosition($val) { $this->_propDict["position"] = intval($val); return $this; } /** * Gets the visibility * The Visibility of the worksheet. The possible values are: Visible, Hidden, VeryHidden. * * @return string|null The visibility */ public function getVisibility() { if (array_key_exists("visibility", $this->_propDict)) { return $this->_propDict["visibility"]; } else { return null; } } /** * Sets the visibility * The Visibility of the worksheet. The possible values are: Visible, Hidden, VeryHidden. * * @param string $val The visibility * * @return WorkbookWorksheet */ public function setVisibility($val) { $this->_propDict["visibility"] = $val; return $this; } /** * Gets the charts * Returns collection of charts that are part of the worksheet. Read-only. * * @return array|null The charts */ public function getCharts() { if (array_key_exists("charts", $this->_propDict)) { return $this->_propDict["charts"]; } else { return null; } } /** * Sets the charts * Returns collection of charts that are part of the worksheet. Read-only. * * @param WorkbookChart[] $val The charts * * @return WorkbookWorksheet */ public function setCharts($val) { $this->_propDict["charts"] = $val; return $this; } /** * Gets the names * Returns collection of names that are associated with the worksheet. Read-only. * * @return array|null The names */ public function getNames() { if (array_key_exists("names", $this->_propDict)) { return $this->_propDict["names"]; } else { return null; } } /** * Sets the names * Returns collection of names that are associated with the worksheet. Read-only. * * @param WorkbookNamedItem[] $val The names * * @return WorkbookWorksheet */ public function setNames($val) { $this->_propDict["names"] = $val; return $this; } /** * Gets the pivotTables * Collection of PivotTables that are part of the worksheet. * * @return array|null The pivotTables */ public function getPivotTables() { if (array_key_exists("pivotTables", $this->_propDict)) { return $this->_propDict["pivotTables"]; } else { return null; } } /** * Sets the pivotTables * Collection of PivotTables that are part of the worksheet. * * @param WorkbookPivotTable[] $val The pivotTables * * @return WorkbookWorksheet */ public function setPivotTables($val) { $this->_propDict["pivotTables"] = $val; return $this; } /** * Gets the protection * Returns sheet protection object for a worksheet. Read-only. * * @return WorkbookWorksheetProtection|null The protection */ public function getProtection() { if (array_key_exists("protection", $this->_propDict)) { if (is_a($this->_propDict["protection"], "\Microsoft\Graph\Model\WorkbookWorksheetProtection") || is_null($this->_propDict["protection"])) { return $this->_propDict["protection"]; } else { $this->_propDict["protection"] = new WorkbookWorksheetProtection($this->_propDict["protection"]); return $this->_propDict["protection"]; } } return null; } /** * Sets the protection * Returns sheet protection object for a worksheet. Read-only. * * @param WorkbookWorksheetProtection $val The protection * * @return WorkbookWorksheet */ public function setProtection($val) { $this->_propDict["protection"] = $val; return $this; } /** * Gets the tables * Collection of tables that are part of the worksheet. Read-only. * * @return array|null The tables */ public function getTables() { if (array_key_exists("tables", $this->_propDict)) { return $this->_propDict["tables"]; } else { return null; } } /** * Sets the tables * Collection of tables that are part of the worksheet. Read-only. * * @param WorkbookTable[] $val The tables * * @return WorkbookWorksheet */ public function setTables($val) { $this->_propDict["tables"] = $val; return $this; } }
Copyright ©2021 || Defacer Indonesia