CD5Property (Object)

Represents a single property of an ENOVIA V6 object.

Role: It represents a single property tuple of a given object/document already saved into ENOVIA. The purpose of this interface is to get the information of a given property of an ENOVIA V6 object. The properties are accessible through Edit/Properties menu item after user has clicked the ‘More…’ button
Example:
 The following example indicates how to retrieve a single CD5Property from a collection CD5Properties.
 
 Dim objCD5Property As CD5Property
 Set objCD5Property = objCD5Properties.Item("0")
 
See also:

Properties


Property PropertyName() As (Read Only)
Returns (gets) the name of the ENOVIA V6 object property.
This is a readonly property.
Throws:
-1641847650 : Connection to ENOVIA V6 is necessary to intialize this option.
Example:
 The following example retrieves Property Name
 
 oCD5Property.PropertyName
 
Property PropertyValue() As (Read Only)
Returns (gets) the value of the ENOVIA V6 object property.
This is a readonly property.
Throws:
-1641847650 : Connection to ENOVIA V6 is necessary to intialize this option.
Example:
 The following example retrieves Property Value
 
 oCD5Property.PropertyValue