All Frameworks  Object Hierarchy  This Framework  Indexes   

AssemblySplit (Object)

Represents the AssemblySplit object.

Property Index

SplittingComponent
Returns the component containing the splitting element.
SplittingElement
Returns the splitting element.
SplittingSide
Returns or sets the splitting side.

Method Index

ModifySplittingElement
Replaces the splitting element by a new one.

Properties


o Property SplittingComponent() As (Read Only)
Returns the component containing the splitting element.
Example:
The following example retrieves in sptComponent the splitting component containing the splitting element of the assembly split assemblySplit:
 Dim sptComponent As Product
 Set sptComponent = assemblySplit.SplittingComponent
 
o Property SplittingElement() As (Read Only)
Returns the splitting element.
Example:
The following example retrieves in sptElement the splitting element of the assembly split assemblySplit:
 Dim sptElement As Reference
 Set sptElement = assemblySplit.SplittingElement
 
o Property SplittingSide() As
Returns or sets the splitting side. The splitting side is the side of the split object kept after the split, with respect to the splitting element. A positive side refers to the split object side shown by the splitting element normal vector.
Example:
The following example returns in sptSide the splitting side of the assembly split assemblySplit, and then sets it to catPositiveSide:
 Set sptSide = assemblySplit.SplittingSide
 assemblySplit.SplittingSide = catPositiveSide
 

Methods


o Sub ModifySplittingElement( iSplittingElement,
iSplittingElemComp)
Replaces the splitting element by a new one.
Parameters:
iSplittingElement
The new face or plane that will split the current body
iSplittingElemComp
The component that contains the new splitting element
Example:
The following example replaces the existing splitting element of the assembly split assemblySplit by sptElem contained in the sptComponent splitting component
 assemblySplit.ModifySplittingElement(sptElem, _
                                      sptComponent)
 

Copyright © 2003, Dassault Systèmes. All rights reserved.