RemoveDynamicTag
Removes item(s) from a Dynamic Tag.
Syntax:
Void RemoveDynamicTag(String tagName,Int32 index);
Remove a specific index of the dynamic tag.
Void RemoveDynamicTag(String tagName);
Remove all indexes of the dynamic tag.
Params:
String tagName: A String parameter containing the tag name.
Int index: An Integer parameter containing the index of the tag that will be removed.
Example:
Remove the item with index 2 from "TagDyn".
PHITag.RemoveDynamicTag("TagDyn", 2);
|
Remove all items from "TagDynamic".
PHITag.RemoveDynamicTag("TagDyn");
|