有人可以白话解释下面三行的意思吗?感激不尽~~ Dim I As Integer Dim str As String If VarType(pts) <> vbEmpty Then '此行代表何意呢?? For I = LBound(pts) To UBound(pts) Step 3 '此行代表何意呢?? pt(0) = pts(I): pt(1) = pts(I + 1): pt(2) = pts(I + 2) '此行代表何意呢?? Set cir = ThisDrawing.ModelSpace.AddCircle(pt, 5) Next I End If