Calculated Price (Exclusive of all taxes)
₹ 20060We make it happen! Get your hands on the best solution based on your needs.
| Brand Name | Autodesk |
| Information | Autodesk makes software for people who make things. If you’ve ever driven a high-performance car, admired a towering skyscraper, used a smartphone, or watched a great film, chances are you’ve experienced what millions of Autodesk customers are doing with our software. |
| Founded Year | 1982 |
| Director/Founders | John Walker / Dan Drake |
| Company Size | 1000+ Employees |
| Other Products | Autodesk AutoCAD LT 2017 , Autodesk Mudbox, Autodesk Maya, Autodesk Revit, Autodesk AutoCAD |
You can absolutely do that, Nishan — here's a VBA/iLogic-style approach to batch-replace leader text in a drawing with a user-defined string like "test 123".
Sub ReplaceLeaderText() Dim oDoc As DrawingDocument Set oDoc = ThisApplication.ActiveDocument Dim oLeaderNote As LeaderNote Dim newText As String newText = InputBox("Enter new leader text:", "Replace Leader Text", "test 123") Dim i As Integer For i = 1 To oDoc.SelectSet.Count If TypeOf oDoc.SelectSet.Item(i) Is LeaderNote Then Set oLeaderNote = oDoc.SelectSet.Item(i) oLeaderNote.Text = newText End If Next End Sub
20,000+ Software Listed
Best Price Guaranteed
Free Expert Consultation
2M+ Happy Customers