.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Temporary Line
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I'm working on a little command that would be really nice to have a temporary line drawn between some points while you're picking them. Something akin to the little line that's drawn in the Measure Distance command. The thing is, I don't really know what this is... can anybody point me in the right direction?
Solved! Go to Solution.
Re: Temporary Line
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
If I understand correctly you want a rubberband line whwn selecting the second point.
In the PromptPointOptions set
.UseBasePoint = true;
.BasePoint = firstPoint;
see if that helps.
Regards
class keyThumper<T> : Lazy<T>; another Swamper
I do not endorse the social media app links below![]()
Re: Temporary Line
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Sorry for the wait, I thought I'd checked this but apparently it didn't catch. That solution was exactly what I was looking for, thanks.
