code
stringlengths 15
9.96M
| docstring
stringlengths 1
10.1k
| func_name
stringlengths 1
124
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 6
186
| url
stringlengths 50
236
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function getUnlimitedLengthInDocumentLibrary()
{
return $this->getProperty("UnlimitedLengthInDocumentLibrary");
} | @return bool | getUnlimitedLengthInDocumentLibrary | php | vgrem/phpSPO | src/SharePoint/FieldMultiChoice.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldMultiChoice.php | MIT |
public function setUnlimitedLengthInDocumentLibrary($value)
{
return $this->setProperty("UnlimitedLengthInDocumentLibrary", $value, true);
} | @var bool | setUnlimitedLengthInDocumentLibrary | php | vgrem/phpSPO | src/SharePoint/FieldMultiChoice.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldMultiChoice.php | MIT |
public function getActivate()
{
if (!$this->isPropertyAvailable("Activate")) {
return null;
}
return $this->getProperty("Activate");
} | Specifies
whether a user has changed from an inactive state to an active state.When a user is added to a site (2) and only
has browse permissions, the
user is in an inactive state. However, once the user can author list
items, add documents, be
assigned tasks, or make any
contribution to the site (2), the user is in an active state.
@return bool | getActivate | php | vgrem/phpSPO | src/SharePoint/ChangeUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ChangeUser.php | MIT |
public function setActivate($value)
{
return $this->setProperty("Activate", $value, true);
} | Specifies
whether a user has changed from an inactive state to an active state.When a user is added to a site (2) and only
has browse permissions, the
user is in an inactive state. However, once the user can author list
items, add documents, be
assigned tasks, or make any
contribution to the site (2), the user is in an active state.
@return ChangeUser
@var bool | setActivate | php | vgrem/phpSPO | src/SharePoint/ChangeUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ChangeUser.php | MIT |
public function getUserId()
{
if (!$this->isPropertyAvailable("UserId")) {
return null;
}
return $this->getProperty("UserId");
} | Uniquely
identifies the changed user.
@return integer | getUserId | php | vgrem/phpSPO | src/SharePoint/ChangeUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ChangeUser.php | MIT |
public function setUserId($value)
{
$this->setProperty("UserId", $value, true);
} | Uniquely
identifies the changed user.
@var integer | setUserId | php | vgrem/phpSPO | src/SharePoint/ChangeUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ChangeUser.php | MIT |
public function getFileName()
{
return $this->getProperty("FileName");
} | @return string | getFileName | php | vgrem/phpSPO | src/SharePoint/Attachment.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Attachment.php | MIT |
public function getServerRelativeUrl()
{
return $this->getProperty("ServerRelativeUrl");
} | @return string | getServerRelativeUrl | php | vgrem/phpSPO | src/SharePoint/Attachment.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Attachment.php | MIT |
public function setFileName($value)
{
$this->setProperty("FileName", $value, true);
} | Specifies
the file name of the list item attachment.
@var string | setFileName | php | vgrem/phpSPO | src/SharePoint/Attachment.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Attachment.php | MIT |
public function setServerRelativeUrl($value)
{
$this->setProperty("ServerRelativeUrl", $value, true);
} | Specifies
the server-relative
URL of a list item attachment.
@var string | setServerRelativeUrl | php | vgrem/phpSPO | src/SharePoint/Attachment.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Attachment.php | MIT |
public function getFileNameAsPath()
{
return $this->getProperty("FileNameAsPath", new SPResourcePath());
} | The file
name of the attachment as a SPResourcePath.
@return SPResourcePath | getFileNameAsPath | php | vgrem/phpSPO | src/SharePoint/Attachment.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Attachment.php | MIT |
public function setFileNameAsPath($value)
{
$this->setProperty("FileNameAsPath", $value, true);
} | The file
name of the attachment as a SPResourcePath.
@var SPResourcePath | setFileNameAsPath | php | vgrem/phpSPO | src/SharePoint/Attachment.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Attachment.php | MIT |
public function getServerRelativePath()
{
return $this->getProperty("ServerRelativePath");
} | The
server-relative-path of the attachment.
@return SPResourcePath | getServerRelativePath | php | vgrem/phpSPO | src/SharePoint/Attachment.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Attachment.php | MIT |
public function setServerRelativePath($value)
{
return $this->setProperty("ServerRelativePath", $value, true);
} | The
server-relative-path of the attachment.
@return self
@var SPResourcePath | setServerRelativePath | php | vgrem/phpSPO | src/SharePoint/Attachment.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Attachment.php | MIT |
function enableIndex()
{
$returnType = new ClientResult($this->getContext());
$qry = new InvokePostMethodQuery($this, "EnableIndex");
$this->getContext()->addQueryAndResultObject($qry, $returnType);
return $returnType;
} | Creates an index for this field. | enableIndex | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setShowInDisplayForm($value)
{
$qry = new InvokePostMethodQuery($this, "setShowInDisplayForm", array($value));
$this->getContext()->addQuery($qry);
return $this;
} | Sets the value of the ShowInDisplayForm property for this field.
@param $value true to show the field in the form; otherwise false.
@return Field | setShowInDisplayForm | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getAutoIndexed()
{
if (!$this->isPropertyAvailable("AutoIndexed")) {
return null;
}
return $this->getProperty("AutoIndexed");
} | Gets a
Boolean value that specifies whether the field is auto-indexed.True to
specify that the field is auto-indexed; otherwise, false.
@return bool | getAutoIndexed | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setAutoIndexed($value)
{
$this->setProperty("AutoIndexed", $value, true);
} | Gets a
Boolean value that specifies whether the field is auto-indexed.True to
specify that the field is auto-indexed; otherwise, false.
@var bool | setAutoIndexed | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getCanBeDeleted()
{
return $this->getProperty("CanBeDeleted");
} | Specifies
whether the field (2) can be
deleted.
@return bool | getCanBeDeleted | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setCanBeDeleted($value)
{
$this->setProperty("CanBeDeleted", $value, true);
} | Specifies
whether the field (2) can be
deleted.
@var bool | setCanBeDeleted | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getClientSideComponentId()
{
return $this->getProperty("ClientSideComponentId");
} | The unique
identifier of the client-side component defined with SharePoint Framework.
@return string | getClientSideComponentId | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setClientSideComponentId($value)
{
$this->setProperty("ClientSideComponentId", $value, true);
} | The unique
identifier of the client-side component defined with SharePoint Framework.
@var string | setClientSideComponentId | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getClientSideComponentProperties()
{
return $this->getProperty("ClientSideComponentProperties");
} | This
property is only used when a ClientSideComponentId is specified. It is
optional. If non-empty, the string MUST contain a JSON object with custom
initialization properties whose format and meaning are defined by the
client-side component.
@return string | getClientSideComponentProperties | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setClientSideComponentProperties($value)
{
$this->setProperty("ClientSideComponentProperties", $value, true);
} | This
property is only used when a ClientSideComponentId is specified. It is
optional. If non-empty, the string MUST contain a JSON object with custom
initialization properties whose format and meaning are defined by the
client-side component.
@var string | setClientSideComponentProperties | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getClientValidationFormula()
{
return $this->getProperty("ClientValidationFormula");
} | @return string | getClientValidationFormula | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setClientValidationFormula($value)
{
$this->setProperty("ClientValidationFormula", $value, true);
} | @var string | setClientValidationFormula | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getClientValidationMessage()
{
return $this->getProperty("ClientValidationMessage");
} | @return string | getClientValidationMessage | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setClientValidationMessage($value)
{
$this->setProperty("ClientValidationMessage", $value, true);
} | @var string | setClientValidationMessage | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getCustomFormatter()
{
return $this->getProperty("CustomFormatter");
} | A JSON
string representing the custom rendering format of the field.
@return string | getCustomFormatter | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setCustomFormatter($value)
{
$this->setProperty("CustomFormatter", $value, true);
} | A JSON
string representing the custom rendering format of the field.
@var string | setCustomFormatter | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getDefaultFormula()
{
return $this->getProperty("DefaultFormula");
} | Gets or
sets the default formula for a calculated field.
@return string | getDefaultFormula | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setDefaultFormula($value)
{
$this->setProperty("DefaultFormula", $value, true);
} | Gets or
sets the default formula for a calculated field.
@var string | setDefaultFormula | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getDefaultValue()
{
return $this->getProperty("DefaultValue");
} | Specifies
the default value for the field (2).Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external
list.
@return string | getDefaultValue | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setDefaultValue($value)
{
$this->setProperty("DefaultValue", $value, true);
} | Specifies
the default value for the field (2).Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external
list.
@var string | setDefaultValue | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getDescription()
{
return $this->getProperty("Description");
} | Specifies
the description of the field
@return string | getDescription | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setDescription($value)
{
$this->setProperty("Description", $value, true);
} | Specifies
the description of the field (2).
@var string | setDescription | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getDirection()
{
return $this->getProperty("Direction");
} | Specifies
the reading
order of the field (2). Its value
is implementation-specific to the client used to browse instances of this field
(2). If the value is set to "none", Microsoft.SharePoint.Client.List.Direction
specifies the reading order of the field (2) that is specified in section 3.2.5.79.1.1.14.Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed to a value other than
"none," and the list is an external
list.
@return string | getDirection | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setDirection($value)
{
$this->setProperty("Direction", $value, true);
} | Specifies
the reading
order of the field (2). Its value
is implementation-specific to the client used to browse instances of this field
(2). If the value is set to "none", Microsoft.SharePoint.Client.List.Direction
specifies the reading order of the field (2) that is specified in section 3.2.5.79.1.1.14.Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed to a value other than
"none," and the list is an external
list.
@var string | setDirection | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getEnforceUniqueValues()
{
return $this->getProperty("EnforceUniqueValues");
} | Specifies
whether the field (2) enforces
unique values.The value
MUST NOT be set to "true" for the following built-in fields (2)Field IdentifierField Name{1df5e554-ec7e-46a6-901d-d85a3881cb18}Author{d31655d1-1d5b-4511-95a1-7a09e9b75bf2}Editor{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f}Modified{7841bf41-43d0-4434-9f50-a673baef7631}_UIVersion{8c06beca-0777-48f7-91c7-6da68bc07b69}Created{26d0756c-986a-48a7-af35-bf18ab85ff4a}_HasCopyDestinations{3881510a-4e4a-4ee8-b102-8ee8e2d0dd4b}CheckoutUser{c042a256-787d-4a6f-8a8a-cf6ab767f12d}ContentTypeExceptions: Error CodeError Type NameCondition-1System.NotSupportedExceptionAdding unique column constraints
to the field (2) where the list is an external
list.
@return bool | getEnforceUniqueValues | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setEnforceUniqueValues($value)
{
$this->setProperty("EnforceUniqueValues", $value, true);
} | Specifies
whether the field (2) enforces
unique values.The value
MUST NOT be set to "true" for the following built-in fields (2)Field IdentifierField Name{1df5e554-ec7e-46a6-901d-d85a3881cb18}Author{d31655d1-1d5b-4511-95a1-7a09e9b75bf2}Editor{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f}Modified{7841bf41-43d0-4434-9f50-a673baef7631}_UIVersion{8c06beca-0777-48f7-91c7-6da68bc07b69}Created{26d0756c-986a-48a7-af35-bf18ab85ff4a}_HasCopyDestinations{3881510a-4e4a-4ee8-b102-8ee8e2d0dd4b}CheckoutUser{c042a256-787d-4a6f-8a8a-cf6ab767f12d}ContentTypeExceptions: Error CodeError Type NameCondition-1System.NotSupportedExceptionAdding unique column constraints
to the field (2) where the list is an external
list.
@var bool | setEnforceUniqueValues | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getEntityPropertyName()
{
return $this->getProperty("EntityPropertyName");
} | Gets the
name of the entity property of this field (2) in the list item
entity that uses this field (2).It MUST
NOT be NULL. It MUST NOT be empty.
@return string | getEntityPropertyName | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setEntityPropertyName($value)
{
$this->setProperty("EntityPropertyName", $value, true);
} | Gets the
name of the entity property of this field (2) in the list item
entity that uses this field (2).It MUST
NOT be NULL. It MUST NOT be empty.
@var string | setEntityPropertyName | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getFilterable()
{
return $this->getProperty("Filterable");
} | Specifies
whether list items in the list
can be filtered by the field (2) value.
@return bool | getFilterable | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setFilterable($value)
{
$this->setProperty("Filterable", $value, true);
} | Specifies
whether list items in the list
can be filtered by the field (2) value.
@var bool | setFilterable | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getFromBaseType()
{
return $this->getProperty("FromBaseType");
} | Gets a Boolean
value that indicates whether the field (2) derives
from a base field type.
@return bool | getFromBaseType | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setFromBaseType($value)
{
$this->setProperty("FromBaseType", $value, true);
} | Gets a Boolean
value that indicates whether the field (2) derives
from a base field type.
@var bool | setFromBaseType | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getGroup()
{
return $this->getProperty("Group");
} | Specifies
the field
group.It MUST
NOT be NULL. It MUST NOT be empty. Its length MUST be equal to or less than
128. Exceptions: Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external
list.
@return string | getGroup | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setGroup($value)
{
$this->setProperty("Group", $value, true);
} | Specifies
the field
group.It MUST
NOT be NULL. It MUST NOT be empty. Its length MUST be equal to or less than
128. Exceptions: Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external
list.
@var string | setGroup | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getHidden()
{
return $this->getProperty("Hidden");
} | Specifies
whether the field (2) is hidden
in list
views and list forms.
@return bool | getHidden | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setHidden($value)
{
$this->setProperty("Hidden", $value, true);
} | Specifies
whether the field (2) is hidden
in list
views and list forms.
@var bool | setHidden | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getId()
{
return $this->getProperty("Id");
} | Specifies
the field
identifier.
@return string | getId | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setId($value)
{
$this->setProperty("Id", $value, true);
} | Specifies
the field
identifier.
@var string | setId | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getIndexed()
{
return $this->getProperty("Indexed");
} | Gets or
sets a Boolean value that specifies whether the field is indexed.
@return bool | getIndexed | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setIndexed($value)
{
$this->setProperty("Indexed", $value, true);
} | Gets or
sets a Boolean value that specifies whether the field is indexed.
@var bool | setIndexed | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getInternalName()
{
if (!$this->isPropertyAvailable("InternalName")) {
return null;
}
return $this->getProperty("InternalName");
} | Specifies
the field
internal name.It MUST
NOT be NULL. It MUST NOT be empty.
@return string | getInternalName | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setInternalName($value)
{
$this->setProperty("InternalName", $value, true);
} | Specifies
the field
internal name.It MUST
NOT be NULL. It MUST NOT be empty.
@var string | setInternalName | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getJSLink()
{
return $this->getProperty("JSLink");
} | Gets the name
of an external ECMAScript ([ECMA-262-1999])
file containing any client rendering logic for fields (2) of this
type.
@return string | getJSLink | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setJSLink($value)
{
$this->setProperty("JSLink", $value, true);
} | Gets the name
of an external ECMAScript ([ECMA-262-1999])
file containing any client rendering logic for fields (2) of this
type.
@var string | setJSLink | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getNoCrawl()
{
return $this->getProperty("NoCrawl");
} | Gets or
sets a Boolean value that specifies whether the field can be crawled by a
search engine.
@return bool | getNoCrawl | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setNoCrawl($value)
{
$this->setProperty("NoCrawl", $value, true);
} | Gets or
sets a Boolean value that specifies whether the field can be crawled by a
search engine.
@var bool | setNoCrawl | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getPinnedToFiltersPane()
{
return $this->getProperty("PinnedToFiltersPane");
} | Boolean
value that indicates whether the field pins to filter pane.
@return bool | getPinnedToFiltersPane | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setPinnedToFiltersPane($value)
{
$this->setProperty("PinnedToFiltersPane", $value, true);
} | Boolean
value that indicates whether the field pins to filter pane.
@var bool | setPinnedToFiltersPane | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getReadOnlyField()
{
if (!$this->isPropertyAvailable("ReadOnlyField")) {
return null;
}
return $this->getProperty("ReadOnlyField");
} | Specifies
whether the value of the field (2) is
read-only.Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external
list.
@return bool | getReadOnlyField | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setReadOnlyField($value)
{
$this->setProperty("ReadOnlyField", $value, true);
} | Specifies
whether the value of the field (2) is
read-only.Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external
list.
@var bool | setReadOnlyField | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getRequired()
{
if (!$this->isPropertyAvailable("Required")) {
return null;
}
return $this->getProperty("Required");
} | Specifies
whether the field (2) requires a
value. If the field (2) requires a value, this value MUST be set to
"true". Otherwise, it MUST be set to "false".Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is set to "true", and the list
is an external list.
@return bool | getRequired | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setRequired($value)
{
$this->setProperty("Required", $value, true);
} | Specifies
whether the field (2) requires a
value. If the field (2) requires a value, this value MUST be set to
"true". Otherwise, it MUST be set to "false".Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is set to "true", and the list
is an external list.
@var bool | setRequired | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getSchemaXml()
{
if (!$this->isPropertyAvailable("SchemaXml")) {
return null;
}
return $this->getProperty("SchemaXml");
} | Specifies
the XML
schema that defines the field (2).It MUST be
NULL, empty, or an XML fragment that
conforms to the FieldDefinition type as defined in [MS-WSSFO2]
section 2.2.8.3.3
or [MS-WSSFO3]
section 2.2.7.3.3.Exceptions: Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed to a non-NULL or non-empty value, and
the list is an external
list.
@return string | getSchemaXml | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setSchemaXml($value)
{
$this->setProperty("SchemaXml", $value, true);
} | Specifies
the XML
schema that defines the field (2).It MUST be
NULL, empty, or an XML fragment that
conforms to the FieldDefinition type as defined in [MS-WSSFO2]
section 2.2.8.3.3
or [MS-WSSFO3]
section 2.2.7.3.3.Exceptions: Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed to a non-NULL or non-empty value, and
the list is an external
list.
@var string | setSchemaXml | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getSchemaXmlWithResourceTokens()
{
if (!$this->isPropertyAvailable("SchemaXmlWithResourceTokens")) {
return null;
}
return $this->getProperty("SchemaXmlWithResourceTokens");
} | Gets the
unlocalized schema XML for this field (2).
@return string | getSchemaXmlWithResourceTokens | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setSchemaXmlWithResourceTokens($value)
{
$this->setProperty("SchemaXmlWithResourceTokens", $value, true);
} | Gets the
unlocalized schema XML for this field (2).
@var string | setSchemaXmlWithResourceTokens | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getScope()
{
if (!$this->isPropertyAvailable("Scope")) {
return null;
}
return $this->getProperty("Scope");
} | Specifies
the server-relative
URL of the list or the site (2)
that the field (2) belongs
to.
@return string | getScope | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setScope($value)
{
$this->setProperty("Scope", $value, true);
} | Specifies
the server-relative
URL of the list or the site (2)
that the field (2) belongs
to.
@var string | setScope | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getSealed()
{
return $this->getProperty("Sealed");
} | Specifies
whether properties on the field (2) cannot be
changed and whether the field (2) cannot be deleted.
@return bool | getSealed | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setSealed($value)
{
$this->setProperty("Sealed", $value, true);
} | Specifies
whether properties on the field (2) cannot be
changed and whether the field (2) cannot be deleted.
@var bool | setSealed | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getShowInFiltersPane()
{
return $this->getProperty("ShowInFiltersPane");
} | Indicates
whether the field will be shown.
@return integer | getShowInFiltersPane | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setShowInFiltersPane($value)
{
$this->setProperty("ShowInFiltersPane", $value, true);
} | Indicates
whether the field will be shown.
@var integer | setShowInFiltersPane | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getSortable()
{
return $this->getProperty("Sortable");
} | Specifies
whether list items in the list
can be sorted by the field (2) value.
@return bool | getSortable | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setSortable($value)
{
$this->setProperty("Sortable", $value, true);
} | Specifies
whether list items in the list
can be sorted by the field (2) value.
@var bool | setSortable | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getStaticName()
{
return $this->getProperty("StaticName");
} | Specifies
a customizable identifier of the field (2). If the
value is NULL or empty, the protocol server MUST use the value of InternalName.Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external
list.
@return string | getStaticName | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setStaticName($value)
{
$this->setProperty("StaticName", $value, true);
} | Specifies
a customizable identifier of the field (2). If the
value is NULL or empty, the protocol server MUST use the value of InternalName.Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external
list.
@var string | setStaticName | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getTitle()
{
return $this->getProperty("Title");
} | Specifies
the display
name of the field (2).
@return string | getTitle | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setTitle($value)
{
$this->setProperty("Title", $value, true);
} | Specifies
the display
name of the field (2).
@var string | setTitle | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getFieldTypeKind()
{
if (!$this->isPropertyAvailable("FieldTypeKind")) {
return null;
}
return $this->getProperty("FieldTypeKind");
} | Specifies
the type of the field (2).Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external
list.
@return integer | getFieldTypeKind | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setFieldTypeKind($value)
{
$this->setProperty("FieldTypeKind", $value, true);
} | Specifies
the type of the field (2).Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external
list.
@var integer | setFieldTypeKind | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getTypeAsString()
{
return $this->getProperty("TypeAsString");
} | Specifies
the type of the field (2).It MUST
NOT be NULL. It MUST NOT be empty. Exceptions: Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external
list.
@return string | getTypeAsString | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setTypeAsString($value)
{
$this->setProperty("TypeAsString", $value, true);
} | Specifies
the type of the field (2).It MUST
NOT be NULL. It MUST NOT be empty. Exceptions: Error CodeError Type NameCondition-1System.NotSupportedExceptionValue is changed, and the list is an external
list.
@var string | setTypeAsString | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getTypeDisplayName()
{
return $this->getProperty("TypeDisplayName");
} | Specifies
the display
name for the type of the field (2).It MUST
NOT be NULL. It MUST NOT be empty.
@return string | getTypeDisplayName | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setTypeDisplayName($value)
{
$this->setProperty("TypeDisplayName", $value, true);
} | Specifies
the display
name for the type of the field (2).It MUST
NOT be NULL. It MUST NOT be empty.
@var string | setTypeDisplayName | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getTypeShortDescription()
{
if (!$this->isPropertyAvailable("TypeShortDescription")) {
return null;
}
return $this->getProperty("TypeShortDescription");
} | Specifies
the description for the type of the field (2).It MUST
NOT be NULL. It MUST NOT be empty.
@return string | getTypeShortDescription | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setTypeShortDescription($value)
{
$this->setProperty("TypeShortDescription", $value, true);
} | Specifies
the description for the type of the field (2).It MUST
NOT be NULL. It MUST NOT be empty.
@var string | setTypeShortDescription | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getValidationFormula()
{
return $this->getProperty("ValidationFormula");
} | Specifies
the data
validation criteria for the value of the field (2).
@return string | getValidationFormula | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setValidationFormula($value)
{
$this->setProperty("ValidationFormula", $value, true);
} | Specifies
the data
validation criteria for the value of the field (2).
@var string | setValidationFormula | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getValidationMessage()
{
return $this->getProperty("ValidationMessage");
} | Specifies
the error message returned when data validation fails
for the field (2).Its length
MUST be equal to or less than 1024.
@return string | getValidationMessage | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setValidationMessage($value)
{
$this->setProperty("ValidationMessage", $value, true);
} | Specifies
the error message returned when data validation fails
for the field (2).Its length
MUST be equal to or less than 1024.
@var string | setValidationMessage | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getIndexStatus()
{
if (!$this->isPropertyAvailable("IndexStatus")) {
return null;
}
return $this->getProperty("IndexStatus");
} | @return integer | getIndexStatus | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setIndexStatus($value)
{
$this->setProperty("IndexStatus", $value, true);
} | @var integer | setIndexStatus | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getDescriptionResource()
{
if (!$this->isPropertyAvailable("DescriptionResource")) {
$this->setProperty("DescriptionResource", new UserResource($this->getContext(), new ResourcePath("DescriptionResource", $this->getResourcePath())));
}
return $this->getProperty("DescriptionResource");
} | @return UserResource | getDescriptionResource | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getTitleResource()
{
if (!$this->isPropertyAvailable("TitleResource")) {
$this->setProperty("TitleResource", new UserResource($this->getContext(), new ResourcePath("TitleResource", $this->getResourcePath())));
}
return $this->getProperty("TitleResource");
} | @return UserResource | getTitleResource | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function getIsModern()
{
if (!$this->isPropertyAvailable("IsModern")) {
return null;
}
return $this->getProperty("IsModern");
} | @return bool | getIsModern | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
public function setIsModern($value)
{
$this->setProperty("IsModern", $value, true);
} | @var bool | setIsModern | php | vgrem/phpSPO | src/SharePoint/Field.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Field.php | MIT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.