Message 1 of 5

Not applicable
04-08-2019
03:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello, I create by VBA some points by using following code snipe:
Dim oSketch As PlanarSketch Set oSketch = ThisApplication.ActiveEditObject Dim oPoint As Point2d Dim dblX As Double Dim dblY As Double ' [...] define dblX and dblY Set oPoint = ThisApplication.TransientGeometry.CreatePoint2d(CDbl(dblX), CDbl(dblY)) oSketch.SketchPoints.Add oPoint, True
Now I want to create a foreach loop to delete all points.
Maybe some one has a code snipe for this? Thanks a lot!
Solved! Go to Solution.