Here is some quickie VBA code that should point you in the right direction, as far as getting those iProperties.
It's not a complete solution, because I'm on my way out for the day, but it should show you enough.
Dim oDDoc As DrawingDocument
Set oDDoc = ThisApplication.ActiveDocument
Dim oSheet As Inventor.Sheet
Set oSheet = oDDoc.ActiveSheet
Dim oViews As DrawingViews
Set oViews = oSheet.DrawingViews
Dim oView As DrawingView
Dim oDDims As DrawingDimensions
Set oDDims = oSheet.DrawingDimensions
Dim oDDim As DrawingDimension
Dim oViewDoc As Document
Dim oDTProps As Inventor.PropertySet
Dim oFPWidth As Double
Dim oFPLength As Double
For Each oView In oViews
If oView.IsFlatPatternView Then
Set oViewDoc = oView.ReferencedDocumentDescriptor.ReferencedDocument
Set oDTProps = oViewDoc.PropertySets.Item("Design Tracking Properties")
Set oFPWidth = oDTProps.Item("Flat Pattern Width").Value
Set oFPLength = oDTProps.Item("Flat Pattern Length").Value
Exit For
End If
Next
'Find a way to connect the DrawingDimension to that specific DrawingView then
If oDDim.ModelValue = oFPWidth Then
'this dimension is the width dimension
ElseIf oDDim.ModelValue = oFPLength Then
'this dimension is the Length dimension
Else
'this dimension is niether
End If
If this solved your problem, or answered your question, please click ACCEPT SOLUTION.
Or, if this helped you, please click 'LIKE' 👍.
Wesley Crihfield

(Not an Autodesk Employee)