System.Object
Eplan.EplApi.DataModel.UniversalPropertyList
Eplan.EplApi.DataModel.StorableObjectPropertyList
Eplan.EplApi.DataModel.ConnectionPointsInfoPropertyList
System.Object
Eplan.EplApi.DataModel.UniversalPropertyList
Eplan.EplApi.DataModel.StorableObjectPropertyList
Eplan.EplApi.DataModel.ConnectionPointsInfoPropertyList
[DefaultMember("Property")] public class ConnectionPointsInfoPropertyList : StorableObjectPropertyList
[DefaultMember("Property")] public ref class ConnectionPointsInfoPropertyList : public StorableObjectPropertyList
It uses the [] operator in order to access its elements (stored properties).
Property list is a container for property values and just like them can be persistent (also called online) or transient (also called offline). If a property list is persistent, this means that it is associated with the properties of some StorableObject or other property list. If any property is added, changed or removed from the property list in this case, the result is also visible in the related objects. Whether a property list is persistent or transient is determined at the time of its creation and cannot be changed.
// Creation of a persistent property list FunctionPropertyList oPersistentPropertyList1 = oFunction.Properties; oPersistentPropertyList1.FUNC_COMMENT = "Comment"; // Now, oFunction.Properties.FUNC_COMMENT is equals "Comment" FunctionPropertyList oPersistentPropertyList2 = new FunctionPropertyList(oFunction); oPersistentPropertyList2.FUNC_COMMENT = "Test"; // Now, oFunction.Properties.FUNC_COMMENT equals "Test" // Creation of a transient property list FunctionPropertyList oTransientPropertyList = new FunctionPropertyList(); oTransientPropertyList.FUNC_COMMENT = "Test comment"; oFunction.Properties.FUNC_COMMENT = oTransientPropertyList.FUNC_COMMENT; oTransientPropertyList.FUNC_COMMENT = "Transient comment"; // Now, oTransientPropertyList.FUNC_COMMENT equals "Test comment"
| Name | Description | |
|---|---|---|
![]() | ConnectionPointsInfoPropertyList Constructor | Constructor |
| Name | Description | |
|---|---|---|
![]() | ARTICLE_ATTRIBUTE_VALUE | Attributes # 22051. |
![]() | ARTICLE_CUSTOM_DATA_INDEX | API Parts Management Extension: Name of add-in # 22212. |
![]() | ARTICLE_CUSTOM_DATA_VALUE | API Parts Management Extension: Value from add-in # 22213. |
![]() | ARTICLE_PARTTYPE | Record type # 22023. |
![]() | ExistingIds | Returns array of property ids. Returns array of AnyPropertyId objects. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList) |
![]() | ExistingValues | Returns array of PropertyValue objects. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList) |
![]() | Parent | StorableObject to which this property list is connected. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList) |
![]() | PART_CREATE_DATE | Creation date # 22983. |
![]() | PART_CREATE_DATE_UTC | Creation date (UTC) # 22985. |
![]() | PART_CREATE_USER | Creator # 22982. |
![]() | PART_LASTCHANGE_DATE | Modification date # 22981. |
![]() | PART_LASTCHANGE_DATE_UTC | Modification date (UTC) # 22986. |
![]() | PART_LASTCHANGE_USER | Last editor # 22980. |
![]() | PART_TERMINAL_ADDITIONALLENGTHDEFAULT | Additional length (default) # 22942. |
![]() | PART_TERMINAL_CREATE | Creator / Creation date (connection point pattern) # 22943. |
![]() | PART_TERMINAL_DESCRIPTION | Description (Connection point pattern) # 22946. |
![]() | PART_TERMINAL_DIRECTION | Routing direction (default) # 22948. |
![]() | PART_TERMINAL_LASTCHANGE | Last editor / Modification date (connection point pattern) # 22944. |
![]() | PART_TERMINAL_NAME | Name (connection point pattern) # 22945. |
![]() | PART_TERMINAL_TERMINALSIZE_DEFAULT | Connection dimension (default) # 22969. |
![]() | PART_TERMINAL_TYPEDEFAULT | Wire termination processing (Eplan Cabinet, default) # 22947. |
![]() | PART_TERMINAL_TYPEOFTERMINAL_DEFAULT | Connection category (default) # 22968. |
![]() | Property | Overloaded. Method used by operator[] in order to access indexed properties. |
![]() | PROPUSER_DBOBJECTID | Overloaded. Object identification # 2000. (Inherited from Eplan.EplApi.DataModel.StorableObjectPropertyList) |
| Name | Description | |
|---|---|---|
![]() | CopyTo | Overloaded. Copies properties to other property list. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList) |
![]() | Dispose() | Destructor for deterministic finalization of ConnectionPointsInfoPropertyList object. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList) |
![]() | Exists | Overloaded. Checks property existence for used obiect. |
![]() | getPropList | Internal method. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList) |