AutoCAD Inventor :: Parts Visibility On View
May 7, 2012
How to manage the visibity of parts on a particular view? For example, in a view there 10 parts appeared. I would like to make only selected parts visible on the said view.
I have the manual steps on how to hide them but when I try to code it using the said step, the parts on the model file were hidden not in the view.
I use oView.ReferenceDocumentDescriptor.ReferenceDocument in traversing the parts but this refers to the model file.
Here is my
Set ViewDocument = oView.ReferencedDocumentDescriptor.ReferencedDocument
For Each ViewOccurence In ViewDocument.ComponentDefinition.Occurrences
If Not nozzleName = ViewOccurence.ReferencedDocumentDescriptor.DisplayName Then
ViewOccurence.Visible = False
End If
Next
View 8 Replies
ADVERTISEMENT
Sep 5, 2012
I have a section view of an assembly. The parts of the assembly that are completely remove via the section no longer show up in the browser. Is there a way to make them show back up in the browser and/or section view? They are internal to the assembly and I would like them not sectioned/removed from the view.
View 3 Replies
View Related
Sep 16, 2011
I'm creating a small product configurator using ilogic. It all works fine, but i've i challenge:controlling the visibility of the components in a drawing view
In simple words, every occurrence of my assembly has an custom Ipropertie calles "Positie". there where 4 values (Bodem, Zij, Kop, Deksel and Overig)In a drawing view i only want to see the parts that has a specific value of the ipropertie "Positie".I found a sample code for VBA, but I cann't get it worked in ilogic.:
Sub HideSecond()
'Assumes you have an open drawing
'Assumes that view 1 of the active sheet is an assembly
'Turns off visibility of assembly's second component in open drawing's first view
[code]....
hind to turn this into ilogic and add the option to check the ipropertie to turn on the visibility
View 6 Replies
View Related
Nov 13, 2013
how to turn this feature on? We recently upgraded from Inventor 2011 to 2014 and now this feature has been disabled. The attachment shows that visibility has been greyed out.
View 2 Replies
View Related
Oct 4, 2011
It happens sometimes, when I try to turn off the visibility of a part in a created view, the option is grayed out, can't uncheck visibility. Whats the reason?
View 4 Replies
View Related
Oct 2, 2012
I am working on a cylindrical part, and I need to CAD an internal feature for the part. I set up a parallel plane at the point within the geometry that the feature is to be located, and am attempting to sketch the profile of the part using the 2D sketch feature. However, the lines that I am sketching are not visible through the rest of the existing cylinder, for example, if I have draw a 30 mm line from the centre point of a 20mm radius cylinder, only the final 10 mm of the line will be shown. While the line is still functional, it is highly inconvenient when trying to sketch these features, they are difficult to work with as I can not see them through the part. Is there any way to set the defaut visibility for 2D sketches to be so that they are visible through solid parts?
View 3 Replies
View Related
Oct 24, 2013
Inventor 2014 Professional:
I have Parts in my Parts List with duplicate Item Numbers (For Balloning purposes) but with different quantities (Custom Quantities). I turn the visibility of the Part with the Static Quantity off.
Whenever my assembly is updated the Part I had orginally turn the visibility off gets turned back on.
Is there something I am missing to keep it turned off?
View 7 Replies
View Related
Jul 18, 2013
When a drawing view is made within Inventor from a presentation file (.ipn) some of the parts sometimes donot appear as properly visible.
I have attached some screen shots which might lead to some clues.
View 5 Replies
View Related
May 3, 2013
IV 2010 Suite
Been working over an idw MANY times due to project lag.Today I opened it up and tried adding balloons to an already ballooned assembly.
The parts list has not changed, and is "structured".But, if I try adding balloons, they tag each part, not the entire assembly.
Also, I verified this by trying to add another parts list, which defaults to "parts only".
I can't show my data set, b/c it's HUGE, plus it's proprietary.
IV 2010 Suite
Digital Storm PC:
EVGA & Intel components
Win 7 Pro 64 bit
View 5 Replies
View Related
Sep 13, 2012
Is there an application or document setting that will make the default state of a row in a linked excel file used in a parts list default to "off" (not visble)?
More specifically, make this apply to added rows.
We have finish schedules in excel that everyone links a parts list to whenerver they need to display a finish schedule on the idw. However, when we add rows (new finishes) to the the excel finish schedule, they get displayed on the idw parts list next time the idw updates wether they are needed or not. Our practice is to only show finishes that are used on the drawing - so frequently a large portion of the whole finish schedule needs to be set to "off" or invisible.
View 3 Replies
View Related
Aug 21, 2013
At my company when producing drawings for manufacture we require a sheet for any steel profiles to be cut!..We do this by selecting the assembly from base view,hitting model view tab, selecting presentation and choosing the relevant profile from the drop down!
Once the profile is placed, we highlight the view and hit the parts list tab which obviously creates a parts list, but for the whole assembly, we then have to edit the parts list by turning off the visibility of the lines of all the parts which are not relevant!!...as you can imagine this is quite a laborious task if you have 50 different profiles.
The reason for this is to show the qty, steel grade and part number to the suppliers. My question is, any code that will take the lines of the parts list that are not relevant to the selected view and turn the visibility of those lines off?
View 1 Replies
View Related
May 20, 2010
Since changing to Inventor I seem to be unable to turn off visibility of parts in assemblies on a drawing. Usually I just expand the view in the browser then right click on parts and turn off visibility. When I try this the visibility option is grey.
View 5 Replies
View Related
Jun 20, 2013
I there a way of finding each Bom structured part that is set to reference in an assembly and setting the view of that component to in-visible.
Also needs to iterate into all set View reps that where created and set all views to not show the referenced parts as well.
View 8 Replies
View Related
Oct 11, 2011
I want to turn off visibility of certain parts in an overlay view but when I right click on the parts or the view(s) the visibility is greyed out. Why does this happen and how can I correct it?
Inventor 2013
Windows 7 Professional 64-bit SP1
HP EliteBook 8470w
Processor: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz
Memory: 16 GB
AMD FirePro M2000
3D Connexion SpacePilot
View 3 Replies
View Related
May 10, 2012
How to manage the visibility of components in a particular view?
In attach file,View 2 is a detail view of view 1. On view 2, I want to display only the nozzle (Drain (H):1) and shell (C1306388341:1) component. So I need to set the visibility of the other component to false.When I try to code this, the components of model file of view 1 was updated not the view.
Set ViewDocument = oDetailView.ReferencedDocumentDescriptor.ReferencedDocument
For Each ViewOccurence In ViewDocument.ComponentDefinition.Occurrences
If nozzleName <> ViewOccurence.ReferencedDocumentDescriptor.DisplayName Then
ViewOccurence.Visible = False
End If
Next
The reference document I set for my code is not the document which contains the view 2. So I need to the actual reference document where view 2 belongs which is in the box of view 2 that contains 5 components.
View 2 Replies
View Related
Nov 8, 2011
I am using this code to turn visibility of components off in IDw file, what I need top turn visibility of a component of in a subassembly.
'oDrawingDocument = ThisApplication.ActiveDocument
'Get the first view
'Dim oView As Inventor.DrawingView
'oView = oDrawingDocument.ActiveSheet.DrawingViews.Item(2)
[Code] .........
View 2 Replies
View Related
Aug 22, 2012
I have a blown out detail on one of my Inventor drawings, I would like to toggle the visibility of some parts in this detail view however when I RHMB these under the browser I can't turn off the visibility
Autodesk Inventor Professional 2013 SP2 64-Bit Edition
Windows 7 HP Z400, Intel Xeon W3550 3.07GHz
12.0GB RAM, ATI FirePro V4800 (FireGL)
View 2 Replies
View Related
Oct 11, 2011
In my neverending battle to find a way to turn off unneeded components in an assembly, I'm trying my hand at modifying component visibility with a custom View Rep. View reps seemed to pose fewer issues than LOD's (in that you can have a drawing and model open at the same time without a million error messages)......until I tried to make a pattern.
When first placing a new subassembly component into an assembly, it will automatically place in the "Last Saved" View Rep. Since certain parts may be invisible in my "skeletal" subassembly, this is ideal. HOWEVER, when I try to pattern this subassembly, all of the occurrences absolutely insist on displaying at the "Master" View Rep. This makes no sense to me whatsoever and destroys yet another workflow at the 99% mark. I understand that I can change the view rep manually, but manual workarounds and corrections defeat the point of using iLogic to manipulate our models.
Am I the only CAD user who wants the simple ability to "turn off" an assembly component? iAssemblies are not an option due to the shear number of combinations of unneeded components.
View 4 Replies
View Related
Jan 13, 2014
I have an assembly with a client feature that contains client graphics. I have exposed the visibility (ClientFeature.Definition.ClientGraphicsCollection[1].Visible) to the user via a context menu option. Changing the visibility currently affects all view representations. Is there a way to associate the visibility with each design view representation?
View 5 Replies
View Related
Nov 29, 2011
I know this wasn't possible in the past (and probably still isn't now) but does any trick or something to only get the qty/parts used in a certain design view rep.
We are starting to do work orders (routings) with parts lists for ONLY whats used in that step in the process. Having to manually count screws,etc.. seems silly now.
Design view reps works excellent for showing the assembly process of a product but the parts list (even filtered to that design view rep) shows the total quantity of each component..not just the count in that design view rep.
Any possibility of doing this with ilogic or something?
2014 Product Design Suite Ultimate
Windows 7 64 bit
90G OCZ SATA 3 SSD (My SSD is faster than your HDD)
Core I7 920 processor, ATI HD6970 graphics card, 12G Corsair RAM
View 3 Replies
View Related
Oct 1, 2010
in dwg's made from an assembly i someties see that the view does not include all parts. To add to the mystery, a projected view made from the base view that lacked the component(s) view can still include the part. The missing parts are not reference parts, and can sometimes be parts of a subassembly.
The attached pdf shows an example:
- view B and C show a horizontal ground plate not visible in the base view
- the projected view shows components visible in the area of detail D, which are not shown in the base view
- near section A-A there is a component missing of which a second item is shown on the left side of the base view.
Switching the hidden lines on shows the missing components, but these should not be hidden at all. No settings are altered for the views to include/exclude components. No parts are set to reference. And no design representations are used.
Whe i bin the views and start over again, the same thing happens to the same components. However, if i bin the whole DWG file and start over, the parts are present...
IV2009 / Vault2009 (including service packs etc)
View 7 Replies
View Related
Oct 3, 2012
I have a model of an enclosure created using Frame Generator. I create a View Representation of each wall and the roof in order to create the fab drawings. Is there a way to create a Parts List ONLY what is visible in a particular View Representation?
Office Laptop specs:
- Inventor Professional 2012 (Autodesk Product Design Suite)
- Dell Precision M6600
- Intel i7-2960XM @ 2.70GHz
- 8GB RAM
- 128GB mSATA SSD (main)
- (2) 750GB drives (non-RAID)
- touchscreen display w/ pen
- Windows 7 Ultimate
Home Laptop specs:
- Dell XPS 17 (non-3D version)
- Intel i7 2nd gen
- 16GB RAM
- (2) 500GB drives (non-RAID)
- touchscreen display
- AutoCAD Mechanical 2008 (Retail License)
- entire Audodesk product line (Student Licenses)
- Google SketchUp 8 (Retail License)
- Blender
- Cinema 4D
- various other design software packages
View 1 Replies
View Related
Mar 21, 2013
I have an assembly that uses reference parts. I do not want them in the BOM, but they are used in other drawings in the BOM. When I make them reference, the iso drawing view boundaries are not correct. Can I change the size? Crop will only decrease the size not increase?
View 3 Replies
View Related
Sep 16, 2013
I often do section views in my 3D model (not drawing) to visually check interference, etc. I noticed today that some parts are excluded from this and do not get sectioned. I'm sure it's an easy fix but a search turned up nothing. How do I include/exclude specific parts from this view?
View 2 Replies
View Related
Jun 14, 2013
I need Recursively go to all bomrows and child rows if present in the Bomview Model Data ("Unnamed")
I have the below code but i only goes one level deep.
I tried the code from the inventor that does the trick on a structured bomview but i will fail if you have a virtual componenent that has the same partnumber as a part inserted in the assembly. then it finds the first insertet and errors on the next?
i have to recursively go to the "Unnamed" bomview here the below code does not fail and works, but as written only one level deep, i need all levels?
Public Sub UpdateThisFileBOMRowProperties14062013() 'ByVal oBOMRows As BOMRowsEnumerator) ', ByVal ItemTab As Long) oApp = GetObject(, "Inventor.Application") oAsmdoc = oApp.ActiveDocument ' Set a reference to the BOM Dim oBOM As BOM oBOM = oAsmdoc.ComponentDefinition.BOM
[code]....
View 3 Replies
View Related
Mar 31, 2012
I am not sure why, but i can't hide few parts in my drawing. I have hidden few parts and saved the view rep. I have called that particular view rep and still I am seeing it the drawing. I am unable to hide it. This is a multi body solid part file. I use INV2012. Win 7
View 1 Replies
View Related
Dec 1, 2011
In some drawings, parts and trail lines will randomly disappear or get rearranged. Once the parts disappear, the only way we're able to get them back is by copy and paste the explosion into the presentation file and regenerate the view.what happened to the .idw file and how it should look.
We've tried replacing the video card and repairing the Inventor installation, but still experience the same issue on some drawings.Running Inventor 2008 on Windows XP.
View 2 Replies
View Related
Oct 25, 2012
I have a parametric assembly and some of the parts in this assembly require a "Break". When the part dramatically reduces in size the part view disappears as the part is now located in the "Break". Delete the "Break", re apply the "Break".
I would like to be able to constrain a Break to the part, either a sketch on the view or maybe from Workplanes in the part.
View 3 Replies
View Related
Sep 1, 2011
Is it possible to define a View Representation in an assembly such that a half section view is active, but only for a certain set of parts within the assembly?
View 5 Replies
View Related
Aug 6, 2012
Attached shows lines (Parts) are intersecting each other in drafting mode. I have tried all but I am not able to resolve this issue.
View 1 Replies
View Related
Sep 4, 2012
issues with parts lists generated from View representations?
This is weird but my parts list generated from View representation seem to be not accurate, when I take two assemblies that I need to create BOM for, and drop them into a new assembly, then create parts lists, its different from BOM generated from representation view that has too high numbers.
View 6 Replies
View Related