Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
azad.akbari
938 Views, 15 Replies

custom field for 3D PDF exporting

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 || "" }}}