All Frameworks  Object Hierarchy  This Framework  Indexes   

ArrangementArea (Object)

Use this object to access an ArrangementArea object's properties and functions.
Role: The ArrangementArea object is a type of Arrangement Object defining an area containing other objects.

Property Index

ArrangementContours
Returns the ArrangementContours collection object associated with an ArrangementArea object.
Height
Returns or sets the Height of an ArrangementArea object.
Size
Returns the Size of the ArrangementArea.
VisuMode
Returns or sets the Visualization Mode for an ArrangementArea object.

Method Index

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

Properties


o Property ArrangementContours() As (Read Only)
Returns the ArrangementContours collection object associated with an ArrangementArea object.
Example:
This example retrieves the ArrangementContours collection object for the objArea1 object.
 Dim objArrContours   As ArrangementContours
 Set objArrContours  = objArea1.ArrangementContours
 
o Property Height() As
Returns or sets the Height of an ArrangementArea object.
Example:
This example retrieves the Height for the objArea1 object.
 Dim dblAreaHeight   As Double
 dblAreaHeight  = objArea1.Height
 
o Property Size() As (Read Only)
Returns the Size of the ArrangementArea.
Example:
This example retrieves the Size of the objArea1 object.
 Dim dblAreaSize   As Double
 dblAreaSize  = objArea1.Size
 
o Property VisuMode() As
Returns or sets the Visualization Mode for an ArrangementArea object.
Example:
This example sets the Visualization Mode for the objArea1 object to CatArrangementAreaVisuModeVolume.
 objArea1.VisuMode = CatArrangementAreaVisuModeVolume
 

Methods


o Func GetTechnologicalObject( iApplicationType) As
Returns the applicative data whose type is the given parameter.
Parameters:
iApplicationType
The type of applicative data searched.
Returns:
oApplicativeObj The matched applicative object.
Example:
This example retrieves the desired applicative object from the objArea1 object.
 Dim objProd   As Product
 objProd  = objArea1.GetTechnologicalObject("Product")
 

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