Message 1 of 1
Ordinate Dimensions - Line Break Doubles via FormattedText
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am running into an issue when I update an ordinate dimension via FormattedText on Inventor Professional 2025
Before:
After:
For Each oDwgSheet In ThisApplication.ActiveDocument.Sheets
Try
For Each oDim In oDwgSheet.DrawingDimensions.OrdinateDimensions
If oDim.text.FormattedText.Contains("DEMO_TAG") Then
oDim.text.FormattedText = oDim.text.FormattedText.Replace("DEMO_TAG", "DEMO_TAG1")
End If
Next
Catch
End Try
Next
I do not think it's an iLogic issue but rather an Inventor issue; Simply modifying the ordinate dimension at all fixes this weird line break. Has anyone else run into this with .FormattedText and any solutions?
Thanks!