Get the value from Inventor symbol

Anonymous

Get the value from Inventor symbol

Anonymous
Not applicable

Hello,

 

I'd like to know how can I get the value (A' in my example) in a iLogic String var.

I've a lot (about 10000) drawing with this symbol, and I'd like to get the value automatically with iLogic.

 

On the internet I found some codes examples for Sketcher symbols, but nothing for this "native" symbol...

 

A'.png

0 Likes
Reply
513 Views
1 Reply
Reply (1)

MechMachineMan
Advisor
Advisor

Some symbols are NOT exposed in the API, meaning you cannot access them through iLogic.

 

A way to test this is to place a symbol, select it, run a macro module to grab that item, and then add a watch to the object so that you can see what object type it is pointing to.

 

Use the code below and see attached screencast for instructions on checking.

 

http://autode.sk/2s0g6jC

 

In this case, it does look like the surface symbols are exposed since it is shown as a surface texture type, and the child objects relate directly to what a surface texture symbol is (ie; allowances).

 

Knowing this, we can go search the API help to find the proper call to access the object.

 

http://help.autodesk.com/view/INVNTOR/2018/ENU/?query=Surface%2Btexture%2Bsymbol&cg=Developer%27s%20...

 

 

Sub TestObj()
    Dim InvApp As Inventor.Application
    Set InvApp = ThisApplication
    
    Dim oDoc As Document
    Set oDoc = InvApp.ActiveDocument
    
    Dim oSS As SelectSet
    Set oSS = oDoc.SelectSet
    
    Set oDoc = Nothing
    Set oSS = Nothing
    Set InvApp = Nothing
    
End Sub

  


--------------------------------------
Did you find this reply helpful ? If so please use the 'Accept as Solution' or 'Like' button below.

Justin K
Inventor 2018.2.3, Build 227 | Excel 2013+ VBA
ERP/CAD Communication | Custom Scripting
Machine Design | Process Optimization


iLogic/Inventor API: Autodesk Online Help | API Shortcut In Google Chrome | iLogic API Documentation
Vb.Net/VBA Programming: MSDN | Stackoverflow | Excel Object Model
Inventor API/VBA/Vb.Net Learning Resources: Forum Thread

Sample Solutions:Debugging in iLogic ( and Batch PDF Export Sample ) | API HasSaveCopyAs Issues |
BOM Export & Column Reorder | Reorient Skewed Part | Add Internal Profile Dogbones |
Run iLogic From VBA | Batch File Renaming| Continuous Pick/Rename Objects

Local Help: %PUBLIC%\Documents\Autodesk\Inventor 2018\Local Help

Ideas: Dockable/Customizable Property Browser | Section Line API/Thread Feature in Assembly/PartsList API Static Cells | Fourth BOM Type
0 Likes

Type a product name