AppInterface.list_attach_tags
AppInterface.list_attach_tags |
Purpose
Retrieves a list of the attachment tags defined in the companion file.
Synopsis
list_attach_tags(self) -> List[xpressinsight.AttachTag]
Return value
A list of the defined tags.
Example
Example of outputting list of tags defined in companion file
>>> tags = insight.list_attach_tags()
... if insight.attach_status == AttachStatus.OK:
... print("Defined tags: ", tagslist)
... else:
... print("Error retrieving tags list")
Further information
1. Check the attachment status code using
insight.attach_status to determine whether the attachment was successfully fetched.
2. Attempting to access attachment tags when the model is not being run through Xpress Insight will cause the model to abort with an error.
Related topics
