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
Property list is a container for property values and just like them can be online
or offline
. If property list is online
it means that is associated with properties of some StorableObject or other property list. In this case if any property is added, changed or removed from property list the result is also visible in related objects. Whether property list is online or offline is being determine in time of it's creation and can not be changed.
//creation of online property list FunctionPropertyList oPropertyListOnline1 = oFunction.Properties; oPropertyListOnline1.FUNC_COMMENT = "Comment"; //now oFunction.Properties.FUNC_COMMENT is equal "Comment" FunctionPropertyList oPropertyLineOnline2 = new FunctionPropertyList(oFunction); oPropertyLineOnline2.FUNC_COMMENT = "Test"; //now oFunction.Properties.FUNC_COMMENT is equal "Test" //creation of offline property list FunctionPropertyList oPropertyLineOffline = new FunctionPropertyList(); oPropertyLineOffline.FUNC_COMMENT = "Test comment"; oFunction.Properties.FUNC_COMMENT = oPropertyLineOffline.FUNC_COMMENT; oPropertyLineOffline.FUNC_COMMENT = "Offline comment"; //now oPropertyLineOffline.FUNC_COMMENT is equal "Test comment"
Name | Description | |
---|---|---|
ConnectionPointsInfoPropertyList Constructor | Overloaded. |
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) |