????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.19.28.64 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/icad.astacus.se/sharepoint/vendor/vgrem/php-spo/src/SharePoint/ |
Upload File : |
<?php /** * This file was generated by phpSPO model generator 2019-11-16T20:01:10+00:00 16.0.19506.12022 */ namespace Office365\SharePoint; /** * Specifies * a field * (2) that can contain multiple lines of text. To set properties, call * the Update method (section 3.2.5.52.2.1.5).The NoCrawl and SchemaXmlWithResourceTokens properties are * not included in the default scalar property set * for this type. */ class FieldMultiLineText extends Field { /** * Specifies * whether a hyperlink is allowed * as a value of the field (2). * @return bool */ public function getAllowHyperlink() { if (!$this->isPropertyAvailable("AllowHyperlink")) { return null; } return $this->getProperty("AllowHyperlink"); } /** * Specifies * whether a hyperlink is allowed * as a value of the field (2). * @var bool */ public function setAllowHyperlink($value) { $this->setProperty("AllowHyperlink", $value, true); } /** * Specifies * whether all changes to the value of the field (2) are * displayed in list forms. * @return bool */ public function getAppendOnly() { if (!$this->isPropertyAvailable("AppendOnly")) { return null; } return $this->getProperty("AppendOnly"); } /** * Specifies * whether all changes to the value of the field (2) are * displayed in list forms. * @var bool */ public function setAppendOnly($value) { $this->setProperty("AppendOnly", $value, true); } /** * Specifies * the number of lines of text to display for the field (2).Its value * MUST be equal to or greater than 1. Its value MUST be equal to or less than * 1000. * @return integer */ public function getNumberOfLines() { if (!$this->isPropertyAvailable("NumberOfLines")) { return null; } return $this->getProperty("NumberOfLines"); } /** * Specifies * the number of lines of text to display for the field (2).Its value * MUST be equal to or greater than 1. Its value MUST be equal to or less than * 1000. * @var integer */ public function setNumberOfLines($value) { $this->setProperty("NumberOfLines", $value, true); } /** * Specifies * whether the field (2) supports a * subset of rich text * formatting. * @return bool */ public function getRestrictedMode() { if (!$this->isPropertyAvailable("RestrictedMode")) { return null; } return $this->getProperty("RestrictedMode"); } /** * Specifies * whether the field (2) supports a * subset of rich text * formatting. * @var bool */ public function setRestrictedMode($value) { $this->setProperty("RestrictedMode", $value, true); } /** * Specifies * whether the field (2) supports rich text * formatting. * @return bool */ public function getRichText() { if (!$this->isPropertyAvailable("RichText")) { return null; } return $this->getProperty("RichText"); } /** * Specifies * whether the field (2) supports rich text * formatting. * @var bool */ public function setRichText($value) { $this->setProperty("RichText", $value, true); } /** * Gets or * sets a Boolean value that specifies whether to allow unlimited field length in * document libraries. * @return bool */ public function getUnlimitedLengthInDocumentLibrary() { if (!$this->isPropertyAvailable("UnlimitedLengthInDocumentLibrary")) { return null; } return $this->getProperty("UnlimitedLengthInDocumentLibrary"); } /** * Gets or * sets a Boolean value that specifies whether to allow unlimited field length in * document libraries. * @var bool */ public function setUnlimitedLengthInDocumentLibrary($value) { $this->setProperty("UnlimitedLengthInDocumentLibrary", $value, true); } /** * Specifies * whether an implementation-specific mechanism for linking wiki pages is * supported. It MUST be "false" if RichText is * "false".Exceptions: * Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external * list. * @return bool */ public function getWikiLinking() { if (!$this->isPropertyAvailable("WikiLinking")) { return null; } return $this->getProperty("WikiLinking"); } /** * Specifies * whether an implementation-specific mechanism for linking wiki pages is * supported. It MUST be "false" if RichText is * "false".Exceptions: * Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external * list. * @var bool */ public function setWikiLinking($value) { $this->setProperty("WikiLinking", $value, true); } }