• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

where is the snack that defines a part of the c.c.?

  • Thread starter Thread starter stefanobruno
  • Start date Start date

stefanobruno

Guest
Does anyone know what identifies an element of the center as such?
there will be a property that I can go to remove / put to mark a piece as " from center contents ".
I want to make sure that the de fero profiles are dissected when I put them on the table, I do not want to go to say piece by piece " participates in section ".
I discovered with regret that the harvests made by my son, which set up the program to dissect everything, when I open them (or my client), have unssectioned irons, with all the resulting marasma.
I can't really understand some programmers' choices.

Thank you.
 
Hi.

: tools - application options - design
_foto__395.webpgood work and good year all
 
Thank you for the answer, but I meant something else.
I am interested in understanding what discriminates an element as part of the library, so it is then treated as indicated with the snack that is placed in the curtain mentioned by you.
What do you say to the program that a part is a screw, not to be dissected, or a mechanical piece, to be dissected?
This comes from the fact that I find myself with irons obtained from the hundred contents, saved as custom parts, that are not dissected in the masses at the table, if not saying " participates in the section ".
 
from what I saw the snack is well hidden, accessible only via vba code. or better, I managed to read that the part is (or is not) of the contained center, but without being able to change the value: this also with a copy (save by name) of the part. If your hope was to directly change the flag to set up the problem section I think there is nothing to do.. .

edit: add data from inventor's help

partcomponentdefinition.iscontentmember property
parent object: partcomponentdefinition
description
property that indicates if this part is a content center part or not. a value of true indicates it is a content center part.
syntax
partcomponentdefinition.iscontentmember() as boolean
 
this vba program sets all views of all sheets in the "cut everything" mode with a click: I think you can convert to ilogic to have automatic triggers but ilogic don't know it well and I don't know what changes to make. If you need it, here it is.
put the design in delayed update mode, set all variations and then remit normal update
Code:
public sub setcuttoallviews()
    dim oinvapp as inventor.application
    set oinvapp = thisapplication
    
    
    
    dim odrw as drawingdocument
    set odrw = thisapplication.activedocument
    
    odrw.drawingsettings.deferupdates = true
    dim osheets as sheets
    set osheets = odrw.sheets
    
    dim osheet as sheet
    dim oviews as drawingviews
    dim oview as drawingview
    
    for each osheet in osheets
        set oviews = osheet.drawingviews
        for each oview in oviews
            if oview.standardpartssectionbehavior <> kalwayssectionstandardparts then
                oview.standardpartssectionbehavior = kalwayssectionstandardparts
            end if
        next
    next
    odrw.drawingsettings.deferupdates = false
    set odrw = nothing
    set oinvapp = nothing
end sub
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
Back
Top