Indexes   

ArrangementRun (Object)

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

Property Index

ArrangementNodes
Returns the ArrangementNodes that make up the ArrangementRun.
Length
Returns the length of the ArrangementRun object.
SectionDiameter
Returns or sets the SectionDiameter for an ArrangementRun object.
SectionHeight
Returns or sets the SectionHeight for an ArrangementRun object.
SectionType
Returns or sets the SectionType for an ArrangementRun object.
SectionWidth
Returns or sets the SectionWidth for an ArrangementRun object.
VisuMode
Returns or sets the Visualization Mode for an ArrangementRun 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 ArrangementRun.
Example:
This example gets the ArrangementNodes for the objRun1 object.
 Dim objArrNodes   As ArrangementNodes
 Set objArrNodes = objRun1.ArrangementNodes
 
o 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
 
o 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
 
o 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
 
o 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
 
o 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
 
o 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


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 objRun1 object.
 Dim objProd   As Product
 objProd  = objRun1.GetTechnologicalObject("Product")
 

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