Indexes   

ArrangementPathway (Object)

Use this object to access properties and methods of an ArrangementPathway object.
Role: Use this interface to control the visualization mode, section parameters, nodes that define the ArrangementPathway object.

Property Index

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

Method Index

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

Properties


o Property ArrangementNodes() As (Read Only)
Returns the ArrangementNodes that make up the ArrangementPathway.
Example:
This example gets the ArrangementNodes for the objPathway1 object.
 Dim objArrNodes   As ArrangementNodes
 Set objArrNodes = objPathway1.ArrangementNodes
 
o Property Length() As (Read Only)
Returns the length of the ArrangementPathway object.
Example:
This example retrieves the Length of the objPathway1 object.
 Dim dblLength   As Double
 dblLength  = objPathway1.Length
 
o Property SectionDiameter() As
Returns or sets the SectionDiameter for an ArrangementPathway object.
Example:
This example retrieves the SectionDiameter for the objPathway1 object.
 Dim dblSectionDia   As Double
 dblSectionDia = objPathway1.SectionDiameter
 
o Property SectionHeight() As
Returns or sets the SectionHeight for an ArrangementPathway object.
Example:
This example gets the SectionHeight for the objPathway1 object.
 Dim dblSectionHeight   As Double
 dblSectionHeight = objPathway1.SectionHeight
 
o Property SectionType() As
Returns or sets the Section for an ArrangementPathway object.
Example:
This example sets the SectionType for the objPathway1 object to CatArrangementRouteSectionRectangular.
 objPathway1.SectionType = CatArrangementRouteSectionRectangular
 
o Property SectionWidth() As
Returns or sets the SectionWidth for an ArrangementPathway object.
Example:
This example gets the SectionWidth for the objPathway1 object.
 Dim dblSectionWidth   As Double
 dblSectionWidth = objPathway1.SectionWidth
 
o Property VisuMode() As
Returns or sets the Visualization Mode for an ArrangementPathway object.
Example:
This example sets the Visualization Mode for the objPathway1 object to CatArrangementRouteVisuModeSolid.
 objPathway1.VisuMode = CatArrangementRouteVisuModeSolid
 

Methods


o Func GetTechnologicalObject( iApplicationType) As
Returns the applicative data which 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 objPathway1 object.
 Dim objProd   As Product
 objProd  = objPathway1.GetTechnologicalObject("Product")
 

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