Role: Use this interface to control the visualization mode, section parameters, nodes that define the ArrangementPathway object.
Properties
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- Func GetTechnologicalObject( iApplicationType) As
-
Returns the applicative data which type is the given parameter.
- Parameters:
-
- iApplicationType
- The type of applicative data searched. dd>
- 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")