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.

Properties


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
 
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
 
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
 
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
 
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
 
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


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")