get_tags#

Item.get_tags() str#

Get the tags on the item.

Returns:
str

Tags on the item.

Examples

import ansys.dynamicreporting.core as adr
adr_service = adr.Service(ansys_installation = r'C:\Program Files\ANSYS Inc\v232')
ret = adr_service.connect()
item_list = adr_service.query()
first_item = item_list[0]
all_tags = first_item.get_tags()