Indexes   

ArrangementBoundary (Object)

Access properties and functions of an ArrangementBoundary object.
Role: Use this interface to control the visualization mode, section parameters, nodes that define the ArrangementBoundary object.

Property Index

ArrangementNodes
Returns the collection of ArrangementNodes that make up the ArrangementBoundary.
Length
Returns the length of the ArrangementBoundary object.
SectionHeight
Returns or sets the SectionHeight for an ArrangementBoundary object.
SectionType
Returns or sets the SectionType for an ArrangementBoundary object.
SectionWidth
Returns or sets the SectionWidth for an ArrangementBoundary object.
VisuMode
Returns or sets the Visualization Mode for an ArrangementBoundary object.

Method Index

GetTechnologicalObject
Returns the applicative data whose type is the given parameter.

Properties


o Property ArrangementNodes() As (Read Only)
Returns the collection of ArrangementNodes that make up the ArrangementBoundary.
Example:
This example gets the ArrangementNodes for the objBoundary1 object.
 Dim objArrNodes   As ArrangementNodes
 Set objArrNodes = objBoundary1.ArrangementNodes
 
o Property Length() As (Read Only)
Returns the length of the ArrangementBoundary object.
Example:
This example retrieves the Length of the objBoundary1 object.
 Dim dblBoundaryLength   As Double
 dblBoundaryLength  = objBoundary1.Length
 
o Property SectionHeight() As
Returns or sets the SectionHeight for an ArrangementBoundary object.
Example:
This example gets the SectionHeight for the objBoundary1 object.
 Dim dblSectionHeight   As Double
 dblSectionHeight = objBoundary1.SectionHeight
 
o Property SectionType() As
Returns or sets the SectionType for an ArrangementBoundary object.
Legal values:
CatArrangementRouteSectionNone
CatArrangementRouteSectionRectangular
Example:
This example sets the SectionType for the objBoundary1 object to CatArrangementRouteSectionRectangular.
 objBoundary1.SectionType = CatArrangementRouteSectionRectangular
 
o Property SectionWidth() As
Returns or sets the SectionWidth for an ArrangementBoundary object.
Example:
This example gets the SectionWidth for the objBoundary1 object.
 Dim dblSectionWidth   As Double
 dblSectionWidth = objBoundary1.SectionWidth
 
o Property VisuMode() As
Returns or sets the Visualization Mode for an ArrangementBoundary object.
Example:
This example sets the Visualization Mode for the objBoundary1 object to CatArrangementRouteVisuModeSolid.
 objBoundary1.VisuMode = CatArrangementRouteVisuModeSolid
 

Methods


o Func GetTechnologicalObject( iApplicationType) As
Returns the applicative data whose type is the given parameter.
Parameters:
iApplicationType
The type of applicative data searched.
oApplicativeObj
The matched applicative object.
Example:
This example retrieves the desired applicative object from the objBoundary1 object.
 Dim objProd   As Product
 objProd  = objBoundary1.GetTechnologicalObject("Product")
 

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