01-04-2019
09:20 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
01-04-2019
09:20 AM
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