The GetPoint method will not stick to anything if you provide a "relative" point argument for rubber banding.
eg: GetPoint(varPoint1, "Pick Next Point")
Is there a workaround? Will the GetPoint method ever be fixed? It seems to be broken in every version of ICADtime calculator.
Re: The GetPoint
#2Hi,
Which language do you use?
AutoLISP, VBA or .NET
Here's the simple line using AutoLISP.
Which language do you use?
AutoLISP, VBA or .NET
Here's the simple line using AutoLISP.
Code: Select all
(setq pt1 (getpoint "\nFirst point:"))
(setq pt2 (getpoint pt1 "\nNext point:"))