Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

So now that you know EXACTLY the property set name, and property name you can use some of the built in iLogic property grabbing tools:

  iProperties.Value("Custom", "LoadCG") = strLoadCG

  iProperties.Value("Custom", "PercentDifference") = CStr(Round((Abs(Parameter("TruckReactionLeft") - Parameter("TruckReactionRight")) / iProperties.Mass) * 100, 1)) & "%"

  Dim truckHalf As Double = iProperties.Value("CarWheels", "Custom", "HalfTruckCenter")

 

using iProperties.Value(optional object occurrence exact display name where default is the current document, propertyset name, property name)

to get or set a value.

 

jvj