Тема: как получить координаты текста
Каким образом получить координаты текста, какая функция для AcadText ?
Информационный портал для профессионалов в области САПР
Вы не вошли. Пожалуйста, войдите или зарегистрируйтесь.
Форумы CADUser → Программирование → VBA → как получить координаты текста
Страницы 1
Чтобы отправить ответ, вы должны войти или зарегистрироваться
Каким образом получить координаты текста, какая функция для AcadText ?
Не знаю прав ли я, приводя пример полностью из Help? Но вообщем, нужно пользоваться Скорой Программистской Помощью.
Sub Example_InsertionPoint() ' This example creates a text object in model space. ' It then changes the insertion point of the text object. Dim textObj As AcadText Dim textString As String Dim insertionPoint(0 To 2) As Double Dim height As Double ' Define the text object textString = "Hello, World." insertionPoint(0) = 2: insertionPoint(1) = 2: insertionPoint(2) = 0 height = 0.5 ' Create the text object in model space Set textObj = ThisDrawing.ModelSpace.AddText(textString, insertionPoint, height) ZoomAll ' Return the current value of the insertion point Dim currInsertionPoint As Variant currInsertionPoint = textObj.insertionPoint MsgBox "The insertion point of the text is " & currInsertionPoint(0) & ", " & currInsertionPoint(1) & ", " & currInsertionPoint(2), vbInformation, "InsertionPoint Example" ' Change the insertion point of the text object and ' update the display of the text object. insertionPoint(0) = 3: insertionPoint(1) = 3: insertionPoint(2) = 0 textObj.insertionPoint = insertionPoint textObj.Update MsgBox "The new insertion point of the text is " & textObj.insertionPoint(0) & ", " & textObj.insertionPoint(1) & ", " & textObj.insertionPoint(2), vbInformation, "InsertionPoint Example" End Sub
leonidSN, спасибо.
Да действительно, в Helpe был ответ, моя невнимательность.
Страницы 1
Чтобы отправить ответ, вы должны войти или зарегистрироваться
Форумы CADUser → Программирование → VBA → как получить координаты текста
Форум работает на PunBB, при поддержке Informer Technologies, Inc