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 | Overloaded. Attributes # 22051. | |
ARTICLE_CUSTOM_DATA_INDEX | Overloaded. API Parts Management Extension: Name of add-in # 22212. | |
ARTICLE_CUSTOM_DATA_VALUE | Overloaded. API Parts Management Extension: Value from add-in # 22213. | |
ARTICLE_PARTTYPE | Overloaded. Record type # 22023. This property isn't indexed. | |
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_USER | Overloaded. Creator # 22982. This property isn't indexed. | |
PART_LASTCHANGE_USER | Overloaded. Last editor # 22980. This property isn't indexed. | |
PART_TERMINAL_ADDITIONALLENGTHDEFAULT | Overloaded. Additional length (default) # 22942. This property isn't indexed. | |
PART_TERMINAL_CREATE | Overloaded. Creator / Creation date (connection point pattern) # 22943. This property isn't indexed. | |
PART_TERMINAL_DESCRIPTION | Overloaded. Description (Connection point pattern) # 22946. This property isn't indexed. | |
PART_TERMINAL_DIRECTION | Overloaded. Routing direction (default) # 22948. This property isn't indexed. | |
PART_TERMINAL_LASTCHANGE | Overloaded. Last editor / Modification date (connection point pattern) # 22944. This property isn't indexed. | |
PART_TERMINAL_NAME | Overloaded. Name (connection point pattern) # 22945. This property isn't indexed. | |
PART_TERMINAL_TERMINALSIZE_DEFAULT | Overloaded. Connection dimension (default) # 22969. This property isn't indexed. | |
PART_TERMINAL_TYPEDEFAULT | Overloaded. Wire termination processing (EPLAN Cabinet, default) # 22947. This property isn't indexed. | |
PART_TERMINAL_TYPEOFTERMINAL_DEFAULT | Overloaded. Connection category (default) # 22968. This property isn't indexed. | |
Property | Overloaded. Method used by operator[] in order to access indexed properties. | |
PROPUSER_DBOBJECTID | Overloaded. Object identification # 2000. This property isn't indexed, and is read-only. (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) |