Set L = ThisDrawing.ModelSpace.AddLine(Pt1, Pt2)
L.color = acRed
Set Ent = L.Copy
If TypeOf Ent Is AcadLine Then
Set L1 = Ent
L1.color = acGreen
End If
V = L.Offset(5)
If TypeOf V Is AcadLine Then
Set L2 = V
L2.color = acMagenta
End If
L.Move Pt1, Pt2
Set Ent = ThisDrawing.ModelSpace.Item(ThisDrawing.ModelSpace.Count - 1)
If TypeOf Ent Is AcadLine Then
Set L3 = Ent
L3.color = acBlue
End If