Correct syntax for SendCommand

Correct syntax for SendCommand

Anonymous
Not applicable
331 Views
1 Reply
Message 1 of 2

Correct syntax for SendCommand

Anonymous
Not applicable
Hi.....and merry christmas!
A little problem: what is the correct syntax for this?

plineObj is a my polyline
R is the ray

ThisDrawing.SendCommand "_fillet" & vbCr & "_r" & vbCr & R & vbCr & "_P" &
vbCr & plineObj

in other words what is the correct syntax of "SendCommand" command for let
me input a entity?

Thanks
0 Likes
332 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
Hi Bux,

Try this

ThisDrawing.SendCommand "_fillet" & vbCr
ThisDrawing.SendCommand "(HandEnt """ & R.Handle & """)" & vbCr
ThisDrawing.SendCommand "(HandEnt """ & PlineObj.Handle & """)" & vbCr

Regards,
Basha
0 Likes