Hi,
I have some code where I want to copy an item to clipboard with base point, and paste into another drawing with insertion point. I have all my code working except the copy with base point section.
The below code allows me to initialise the COPYBASE command but requires user input for the base point position:
sourceDoc.SendCommand "_SELECT All" & vbCr & vbCr
sourceDoc.SendCommand "_copybase" & vbCr
I can't seem to find a way to code the base point into the command. I have tried the below code:
sourceDoc.SendCommand "_copybase" & " , " & basePoint(0) & " , " & basePoint(1) & " , " & basePoint(2) & vbCr
I have the paste command working with an insertion point but the COPYBASE command must work a different way.
destinationDoc.SendCommand "_pasteclip " & insertionPoint(0) & " , " & insertionPoint(1) & " , " & insertionPoint(2) & vbCr
If anyone could help this would be greatly appreciated.