Tag¶
app.activeDocument.selection[index].tags[index
Description
A label associated with a specific piece of artwork.
Tags allows you to assign an unlimited number of key-value pairs to any page item in a document.
Properties¶
Tag.name¶
app.activeDocument.selection[index].tags[index].name
Description
The tag’s name.
Type
String, read-only.
Tag.parent¶
app.activeDocument.selection[index].tags[index].parent
Description
The object that contains this tag.
Type
Object, read-only.
Tag.typename¶
app.activeDocument.selection[index].tags[index].typename
Description
The class name of the object.
Type
String, read-only.
Tag.value¶
app.activeDocument.selection[index].tags[index].value
Description
The data stored in this tag.
Type
String, read-only.
Methods¶
Tag.remove()¶
app.activeDocument.selection[index].tags[index].remove()
Description
Deletes this object.
Returns
Nothing.