Message 1 of 13
Rubberband between GETPOINTS?
Not applicable
05-03-2005
06:42 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
So I've got my custom leader command almost perfect
(or perfect enough) but I'm missing one thing - that nice rubber band between my
getpoints.
(or perfect enough) but I'm missing one thing - that nice rubber band between my
getpoints.
The way I'm doing it is to prompt the user for a
StartPoint, a NextPoint and a LastPoint:
StartPoint, a NextPoint and a LastPoint:
StartPoint = ThisDrawing.Utility.GetPoint(, vbcr
& "Select leader start point: ")
& "Select leader start point: ")
NextPoint =
ThisDrawing.Utility.GetPoint(StartPoint, "Select next leader point:
")
ThisDrawing.Utility.GetPoint(StartPoint, "Select next leader point:
")
LastPoint = ThisDrawing.Utility.GetPoint(NextPoint,
"Select last leader point: ")
"Select last leader point: ")
Then these go into an array for the
AddLeader...
AddLeader...
Its a little unnerving that once you pick the
NextPoint, the "line" between StartPoint and NextPoint disappears. Any ideas for
keeping it or am I going about the whole gepoint thing wrong?
NextPoint, the "line" between StartPoint and NextPoint disappears. Any ideas for
keeping it or am I going about the whole gepoint thing wrong?
Thanks in advance for any help!