Role: Use this interface to control the visualization mode, section parameters, nodes that define the ArrangementRun object.
Properties
- Property ArrangementNodes() As (Read Only)
-
Returns the ArrangementNodes that make up the ArrangementRun.
- Example:
-
This example gets the ArrangementNodes for the objRun1
object.
Dim objArrNodes As ArrangementNodes Set objArrNodes = objRun1.ArrangementNodes
- Property Length() As (Read Only)
-
Returns the length of the ArrangementRun object.
- Example:
-
This example retrieves the Length of the objRun1 object.
Dim dblLength As Double dblLength = objRun1.Length
- Property SectionDiameter() As
-
Returns or sets the SectionDiameter for an ArrangementRun object.
- Example:
-
This example retrieves the SectionDiameter for the objRun1
object.
Dim dblSectionDia As Double dblSectionDia = objRun1.SectionDiameter
- Property SectionHeight() As
-
Returns or sets the SectionHeight for an ArrangementRun object.
- Example:
-
This example gets the SectionHeight for the objRun1
object.
Dim dblSectionHeight As Double dblSectionHeight = objRun1.SectionHeight
- Property SectionType() As
-
Returns or sets the SectionType for an ArrangementRun object.
- Example:
-
This example sets the SectionType for the objRun1
object to CatArrangementRouteSectionRectangular.
objRun1.SectionType = CatArrangementRouteSectionRectangular
- Property SectionWidth() As
-
Returns or sets the SectionWidth for an ArrangementRun object.
- Example:
-
This example gets the SectionWidth for the objRun1
object.
Dim dblSectionWidth As Double dblSectionWidth = objRun1.SectionWidth
- Property VisuMode() As
-
Returns or sets the Visualization Mode for an ArrangementRun object.
- Example:
-
This example sets the Visualization Mode for the objRun1
object to CatArrangementRouteVisuModeSolid.
objRun1.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 objRun1 object.
Dim objProd As Product objProd = objRun1.GetTechnologicalObject("Product")