IPWorks Cloud 2020 PHP Edition

Questions / Feedback?

MetadataModOp Property

The modification operation to perform on the metadata item.

Object Oriented Interface

public function getMetadataModOp($metadataindex);
public function setMetadataModOp($metadataindex, $value);

Procedural Interface

ipworkscloud_box_get($res, 30 , $metadataindex);
ipworkscloud_box_set($res, 30, $value , $metadataindex);

Default Value

0

Remarks

The modification operation to perform on the metadata item.

This property specifies which modification operation should be performed for the metadata item when UpdateMetadata is called. Possible values are:

0 (opNone - default) No-Op (the class skips the metadata item).
1 (opAdd) A new metadata item will be added. If one already exists with the specified MetadataName, its value will be overwritten.
2 (opReplace) The metadata item with the given MetadataName (which must already exist) will have its value overwritten.
3 (opCopyFrom) A new metadata item will be added, its value copied from the item specified by MetadataSourceName (which must already exist).
4 (opMoveFrom) A new metadata item will be added, its value moved from the item specified by MetadataSourceName (which must already exist). The source item will then be removed.
5 (opRemove) The metadata item with the given MetadataName (which must already exist) will be removed.
6 (opTest) Will verify that the metadata item with the given MetadataName (which must already exist) has the specified MetadataValue.

Refer to UpdateMetadata for more information.

The $metadataindex parameter specifies the index of the item in the array. The size of the array is controlled by the MetadataCount property.

This property is not available at design time.

Data Type

Integer

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 PHP Edition - Version 20.0 [Build 8265]