Message 1 of 2
Setting Dimension TextPoint Location using iLogic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I can't seem to get Inventor to locate a Sketch Dimension label using TextPoint in Inventor 2014.
Here's some simple test code I've been trying.
For Each oDim In ThisDoc.Document.ComponentDefinition.Sketches(2).DimensionConstraints
oDim.TextPoint.X = 3
oDim.TextPoint.Y = 3
MsgBox(oDim.TextPoint.X & vbCrLf & oDim.TextPoint.Y)
Next
Why doesn't this move the dimension to 3, 3?
Thanks,
Steve