IPWorks Cloud 2020 C++ Builder Edition

Questions / Feedback?

MetadataModOp Property

The modification operation to perform on the metadata item.

Syntax

__property TicsBoxMetadataModOps MetadataModOp[int MetadataIndex] = { read=FMetadataModOp, write=FSetMetadataModOp };
enum TicsBoxMetadataModOps { opNone=0, opAdd=1, opReplace=2, opCopyFrom=3, opMoveFrom=4, opRemove=5, opTest=6 };

Default Value

opNone

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 component 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 C++ Builder Edition - Version 20.0 [Build 8265]