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/WorkbookSortField.php
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * WorkbookSortField 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; /** * WorkbookSortField 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 WorkbookSortField extends Entity { /** * Gets the ascending * Represents whether the sorting is done in an ascending fashion. * * @return bool|null The ascending */ public function getAscending() { if (array_key_exists("ascending", $this->_propDict)) { return $this->_propDict["ascending"]; } else { return null; } } /** * Sets the ascending * Represents whether the sorting is done in an ascending fashion. * * @param bool $val The value of the ascending * * @return WorkbookSortField */ public function setAscending($val) { $this->_propDict["ascending"] = $val; return $this; } /** * Gets the color * Represents the color that is the target of the condition if the sorting is on font or cell color. * * @return string|null The color */ public function getColor() { if (array_key_exists("color", $this->_propDict)) { return $this->_propDict["color"]; } else { return null; } } /** * Sets the color * Represents the color that is the target of the condition if the sorting is on font or cell color. * * @param string $val The value of the color * * @return WorkbookSortField */ public function setColor($val) { $this->_propDict["color"] = $val; return $this; } /** * Gets the dataOption * Represents additional sorting options for this field. The possible values are: Normal, TextAsNumber. * * @return string|null The dataOption */ public function getDataOption() { if (array_key_exists("dataOption", $this->_propDict)) { return $this->_propDict["dataOption"]; } else { return null; } } /** * Sets the dataOption * Represents additional sorting options for this field. The possible values are: Normal, TextAsNumber. * * @param string $val The value of the dataOption * * @return WorkbookSortField */ public function setDataOption($val) { $this->_propDict["dataOption"] = $val; return $this; } /** * Gets the icon * Represents the icon that is the target of the condition if the sorting is on the cell's icon. * * @return WorkbookIcon|null The icon */ public function getIcon() { if (array_key_exists("icon", $this->_propDict)) { if (is_a($this->_propDict["icon"], "\Microsoft\Graph\Model\WorkbookIcon") || is_null($this->_propDict["icon"])) { return $this->_propDict["icon"]; } else { $this->_propDict["icon"] = new WorkbookIcon($this->_propDict["icon"]); return $this->_propDict["icon"]; } } return null; } /** * Sets the icon * Represents the icon that is the target of the condition if the sorting is on the cell's icon. * * @param WorkbookIcon $val The value to assign to the icon * * @return WorkbookSortField The WorkbookSortField */ public function setIcon($val) { $this->_propDict["icon"] = $val; return $this; } /** * Gets the key * Represents the column (or row, depending on the sort orientation) that the condition is on. Represented as an offset from the first column (or row). * * @return int|null The key */ public function getKey() { if (array_key_exists("key", $this->_propDict)) { return $this->_propDict["key"]; } else { return null; } } /** * Sets the key * Represents the column (or row, depending on the sort orientation) that the condition is on. Represented as an offset from the first column (or row). * * @param int $val The value of the key * * @return WorkbookSortField */ public function setKey($val) { $this->_propDict["key"] = $val; return $this; } /** * Gets the sortOn * Represents the type of sorting of this condition. The possible values are: Value, CellColor, FontColor, Icon. * * @return string|null The sortOn */ public function getSortOn() { if (array_key_exists("sortOn", $this->_propDict)) { return $this->_propDict["sortOn"]; } else { return null; } } /** * Sets the sortOn * Represents the type of sorting of this condition. The possible values are: Value, CellColor, FontColor, Icon. * * @param string $val The value of the sortOn * * @return WorkbookSortField */ public function setSortOn($val) { $this->_propDict["sortOn"] = $val; return $this; } }
Copyright ©2021 || Defacer Indonesia