PipeCAD icon indicating copy to clipboard operation
PipeCAD copied to clipboard

Export PDMS RVM/*.ATT file for Review

Open eryar opened this issue 2 years ago • 3 comments

Export model to PDMS RVM/ATT file format for review softwares.

eryar avatar Aug 02 '22 23:08 eryar

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.

rompik avatar Sep 15 '22 09:09 rompik

Do you mean Python function vars():

ce = PipeCad.CurrentItem()
Attributes = vars(ce)

eryar avatar Sep 15 '22 09:09 eryar

Thank you, didn't know about such opportunity.

rompik avatar Sep 15 '22 11:09 rompik