PipeCAD
PipeCAD copied to clipboard
Export PDMS RVM/*.ATT file for Review
Export model to PDMS RVM/ATT file format for review softwares.
Is any method for getting all available attributes of current element? For example:
Attributes = PipeCad.CurrentItem().Attributes
This will be useful also for Reports form to provide list of attributes, which can be used for extracting report.
Do you mean Python function vars():
ce = PipeCad.CurrentItem()
Attributes = vars(ce)
Thank you, didn't know about such opportunity.