On Error Resume Next Dim TextSSet As AcadSelectionSet ThisDrawing.Utility.Prompt vbCr & "选择单行文字:"
ThisDrawing.SelectionSets.Item("TextSSet ").Delete Set TextSSet = ThisDrawing.SelectionSets.Add("TextSSet ")
TextSSet.SelectOnScreen Dim RetVal As Variant RetVal = TextSSet.ArrayRectangular(4, 4, 1, 10, 10, 1)
|