• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk Inventor Customization

    Reply
    New Member
    Posts: 2
    Registered: ‎11-13-2012
    Accepted Solution

    Programmatically making all inputs non-consumed

    73 Views, 2 Replies
    11-13-2012 12:04 PM

    I need to be able to programmatically set all inputs to be non-consumed for a C# Inventor 2013 add-in I'm writing. I'm doing this:

     

    InventorPart = (Inventor.PartDocument)Program.InventorApp.ActiveDocument;
    foreach(Inventor.PartFeature ipf in InventorPart.ComponentDefinition.Features) { ipf.ConsumeInputs = false; }

    Seems straightforward. But when I run it, I get "COMException was unhandled - Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL))". Researching this, it looks like it's just a generic COM error. 

     

    Any ideas? 

     

     

     

    Please use plain text.
    ADN Support Specialist
    Posts: 211
    Registered: ‎03-26-2007

    Re: Programmatically making all inputs non-consumed

    11-21-2012 08:21 AM in reply to: tomtn

    Hi,

     

    As far as I know only Stitch and Sculpt features support that, but there might be others.

    If you right-click a feature in the user interface and the context menu shows "Consume Inputs" then it is supported for that specific feature type otherwise not. If you get an exception when trying to set it through the API, then it's not supported.

     

    Cheers,



    Adam Nagy
    Developer Technical Services
    Autodesk Developer Network
    Please use plain text.
    New Member
    Posts: 2
    Registered: ‎11-13-2012

    Re: Programmatically making all inputs non-consumed

    12-21-2012 03:45 PM in reply to: adam.nagy

    Ok, I was trying to do the similar thing for sketches (sharing sketches) and thought it was the same, but turns out it has its own option. Thanks!

    Please use plain text.