CD5Properties (Object)

Represents a collection of all the properties of an ENOVIA V6 object.

Role: It represents all the properties of a given object/document already saved into ENOVIA. The purpose of this interface is to get a collection of an ENOVIA V6 object properties. The properties are accessible through Edit/Properties menu item after user has clicked the ‘More…’ button It is managed by .
Example:
 The following example indicates how to retrieve CD5Properties from ENOVIA V6 Integration Engine.
 
 Dim objCD5Properties As CD5Properties
 'To get properties of regular documents
 Set objCD5Properties = oCD5Engine.GetPropertiesOfDocument(objCATIADocument)
 'To get properties of Embedded Component
 Set objCD5Properties = oCD5Engine.GetPropertiesOfDocument(objCATIADocument, "Embedded_Component_Name")
 
See also:
,

Methods


Func Item( iIndex) As
Returns ENOVIA V6 object property specified by 1 based index. That is, 1th index is the first property ergo last property is (Total Count)th Index
Throws:
-1641847650 : Connection to ENOVIA V6 is necessary to intialize this option.
Example:
 The following example shows how to retrieve a single property from the collection of all properties.
 
 Dim objCD5Property As CD5Property
 Set objCD5Property = objCD5Properties.Item(1)