Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How do I change the View Label position using iLogic?
If I assign a point and try to sync the location, I get an error: [Error in Rule... Member not Found. (Exception from HRESULT: 0x800200003 (DISP_E_MEMBERNOTFOUND)]
SyntaxEditor Code Snippet
Dim wPoint As Point2d For Each oView In oSheet.DrawingViews wPoint = ThisApplication.TransientGeometry.CreatePoint2d(oView.Position.X, oView.Position.Y) oView.Label.Position = wPoint Next
If I assign the X and Y individually, it doesn't appear to have any effect:
SyntaxEditor Code Snippet
For Each oView In oSheet.DrawingViews oView.Label.Position.X = oView.Position.X Next
Any thoughts?
Steve
Solved! Go to Solution.