custom field for 3D PDF exporting
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I need to customize a 3d PDF and there are some fields that I can not export information from. The information is taken from the Iproperties.
These two works and I get the information out correctly:
{{{ topComponent['Part Number'] || "" }}}
{{{ topComponent.Title || "" }}}
However, this three fields becomes empty:
{{{ topComponent['Creation Date'] || "" }}}
{{{ topComponent['Checked Date'] || "" }}}
{{{ topComponent['Design State'] || "" }}}
I tried to change the code to following, but the result remains empty.
{{{ topComponent.Creation Date || "" }}}
{{{ topComponent.Checked Date || "" }}}
{{{ topComponent.Design State || "" }}}
Link copied