Eplan Platform API
Eplan.EplApi.DataModel Namespace / InterruptionPointPropertyList Class
Members Example

In This Topic
    InterruptionPointPropertyList Class
    In This Topic
    This class represents collection of properties of InterruptionPoint class. Please check also base classes for other properties which are available for InterruptionPoint objects: FunctionBasePropertyList, SymbolReferencePropertyList, PlacementPropertyList, StorableObjectPropertyList
    Inheritance Hierarchy

    System.Object
       Eplan.EplApi.DataModel.UniversalPropertyList
          Eplan.EplApi.DataModel.StorableObjectPropertyList
             Eplan.EplApi.DataModel.PlacementPropertyList
                Eplan.EplApi.DataModel.SymbolReferencePropertyList
                   Eplan.EplApi.DataModel.FunctionBasePropertyList
                      Eplan.EplApi.DataModel.InterruptionPointPropertyList

    Syntax
    [DefaultMember("Property")]
    public class InterruptionPointPropertyList : FunctionBasePropertyList 
    [DefaultMember("Property")]
    public ref class InterruptionPointPropertyList : public FunctionBasePropertyList 
    Remarks
    It uses operator[] in order to access its elements (stored properties).

    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.

    Example
    Example shows usage of online an offline property list:
    //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"
    
    
    Public Constructors
     NameDescription
    Public ConstructorOverloaded.   
    Top
    Public Properties
     NameDescription
    Public PropertyOverloaded. Functional assignment # 1320. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment: Description # 1350. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment with preceding sign # 1340. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Higher-level function number # 1720. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Higher-level function number: Description # 1750. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Higher-level function number with preceding sign # 1740. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation # 1220. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation: Description # 1250. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation with preceding sign # 1240. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site # 1420. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site: Description # 1450. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site with preceding sign # 1440. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation # 1120. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation: Description # 1150. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation with preceding sign # 1140. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product # 1820. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product: Description # 1850. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product with preceding sign # 1840. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier, complete) # 1321. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Higher-level function number (sub-identifier, complete) # 1721. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier, complete) # 1221. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier, complete) # 1421. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier, complete) # 1121. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier, complete) # 1821. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier, complete) # 1621. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure # 1620. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure: Description # 1650. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure with preceding sign # 1640. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (main identifier) # 1300. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (main identifier): Description # 1330. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (leading identifiers) # 1322. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (visible) # 1329. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Higher-level function number (main identifier) # 1700. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Higher-level function number (main identifier): Description # 1730. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Higher-level function number (leading identifiers) # 1722. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Higher-level function number (visible) # 1729. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (main identifier) # 1200. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (main identifier): Description # 1230. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (leading identifiers) # 1222. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (visible) # 1229. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (main identifier) # 1400. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (main identifier): Description # 1430. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (leading identifiers) # 1422. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (visible) # 1429. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (main identifier) # 1100. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (main identifier): Description # 1130. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (leading identifiers) # 1122. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (visible) # 1129. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (main identifier) # 1800. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (main identifier): Description # 1830. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (leading identifiers) # 1822. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (visible) # 1829. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 1) # 1301. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 1): Description # 1331. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 2) # 1302. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 2): Description # 1332. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 3) # 1303. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 3): Description # 1333. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 4) # 1304. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 4): Description # 1334. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 5) # 1305. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 5): Description # 1335. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 6) # 1306. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 6): Description # 1336. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 7) # 1307. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 7): Description # 1337. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 8) # 1308. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 8): Description # 1338. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 9) # 1309. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Functional assignment (sub-identifier 9): Description # 1339. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 1) # 1201. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 1): Description # 1231. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 2) # 1202. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 2): Description # 1232. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 3) # 1203. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 3): Description # 1233. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 4) # 1204. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 4): Description # 1234. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 5) # 1205. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 5): Description # 1235. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 6) # 1206. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 6): Description # 1236. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 7) # 1207. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 7): Description # 1237. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 8) # 1208. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 8): Description # 1238. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 9) # 1209. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Location designation (sub-identifier 9): Description # 1239. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 1) # 1401. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 1): Description # 1431. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 2) # 1402. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 2): Description # 1432. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 3) # 1403. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 3): Description # 1433. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 4) # 1404. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 4): Description # 1434. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 5) # 1405. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 5): Description # 1435. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 6) # 1406. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 6): Description # 1436. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 7) # 1407. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 7): Description # 1437. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 8) # 1408. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 8): Description # 1438. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 9) # 1409. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Installation site (sub-identifier 9): Description # 1439. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 1) # 1101. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 1): Description # 1131. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 2) # 1102. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 2): Description # 1132. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 3) # 1103. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 3): Description # 1133. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 4) # 1104. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 4): Description # 1134. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 5) # 1105. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 5): Description # 1135. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 6) # 1106. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 6): Description # 1136. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 7) # 1107. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 7): Description # 1137. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 8) # 1108. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 8): Description # 1138. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 9) # 1109. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Function designation (sub-identifier 9): Description # 1139. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 1) # 1801. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 1): Description # 1831. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 2) # 1802. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 2): Description # 1832. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 3) # 1803. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 3): Description # 1833. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 4) # 1804. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 4): Description # 1834. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 5) # 1805. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 5): Description # 1835. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 6) # 1806. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 6): Description # 1836. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 7) # 1807. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 7): Description # 1837. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 8) # 1808. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 8): Description # 1838. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 9) # 1809. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Product (sub-identifier 9): Description # 1839. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (main identifier) # 1600. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (main identifier): Description # 1630. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (leading identifiers) # 1622. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 1) # 1601. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 1): Description # 1631. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 2) # 1602. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 2): Description # 1632. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 3) # 1603. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 3): Description # 1633. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 4) # 1604. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 4): Description # 1634. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 5) # 1605. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 5): Description # 1635. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 6) # 1606. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 6): Description # 1636. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 7) # 1607. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 7): Description # 1637. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 8) # 1608. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 8): Description # 1638. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 9) # 1609. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (sub-identifier 9): Description # 1639. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. User-defined structure (visible) # 1629. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyReturns array of property ids. Returns array of AnyPropertyId objects. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList)
    Public PropertyReturns array of PropertyValue objects. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList)
    Public PropertyBlock property: Format # 20202.  
    Public PropertyBlock property # 20201.  
    Public PropertyOverloaded. Circuit number # 20317. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Identifier # 20013. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Item number # 20318. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Counter # 20014. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Media code # 20316. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (full, without project structures) # 20009. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (full, without project structures, with preceding sign) # 20213. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (superior, without project structures) # 20003. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (superior, without project structures, with preceding sign) # 20211. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate, without project structures) # 20004. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate, without project structures, with preceding sign) # 20212. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (project structures only) # 20020. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Use displayed DT as full DT # 20051. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Column # 20152. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Application # 20155. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Page # 20150. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Subpage # 20151. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Row # 20153. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Section # 20154. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Supplementary field 1 # 20156. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Supplementary field 2 # 20157. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Supplementary field 3 # 20158. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Supplementary field 4 # 20159. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT: Supplementary field 5 # 20160. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Column # 20172. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Application # 20175. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Page # 20170. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Subpage # 20171. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Row # 20173. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Section # 20174. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Supplementary field 1 # 20176. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Supplementary field 2 # 20177. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Supplementary field 3 # 20178. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Supplementary field 4 # 20179. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Supplementary field 5 # 20180. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyFormat of displayed DT # 20205.  
    Public PropertyOverloaded. DT (full) # 20006. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyFormat of full DT # 20206.  
    Public PropertyOverloaded. Name (full) # 20001. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (identifying) # 20005. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Identifying DT elements # 20096. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (identifying, without subordinate DT) # 20007. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (identifying, without project structures) # 20008. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (identifying, without project structures, with preceding sign) # 20215. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Name (identifying) # 20000. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Identifying name elements # 20095. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyCross-reference display: Max. number of cross-references # 20198.  
    Public PropertyOverloaded. DT (subordinate): Identifier # 20017. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate):Counter # 20018. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Prefix # 20016. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (subordinate): Subcounter # 20019. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyCross-reference display: Number of rows / columns # 20050.  
    Public PropertyOverloaded. DT: Prefix # 20012. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyCross-reference display: Display # 20049.  
    Public PropertyOverloaded. DT: Subcounter # 20015. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertySupplementary field # 20901.  
    Public PropertyOverloaded. Symbol description (function) # 20114. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Symbol name # 20112. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Symbol number # 20168. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Symbol variant # 20113. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Symbol library # 20111. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Symbol # 20575. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Representation type # 20121. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. DT (displayed) # 20010. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyOverloaded. Name (visible) # 20002. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyCross-reference (external) # 25102.  
    Public PropertyMessage text # 20185.  
    Public PropertyOverloaded. Property arrangement # 19307. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Placement # 19007. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Page name (full) # 19023. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Page name # 19022. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Page type # 19020. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Column number # 19005. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Row number # 19006. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Modification date (change tracking) # 19032. (Inherited from Eplan.EplApi.DataModel.PlacementPropertyList)
    Public PropertyOverloaded. Revision marker (change tracking) # 19030. (Inherited from Eplan.EplApi.DataModel.PlacementPropertyList)
    Public PropertyOverloaded. Revision marker format (change tracking) # 19031. (Inherited from Eplan.EplApi.DataModel.PlacementPropertyList)
    Public PropertyOverloaded. Modification time (change tracking) # 19034. (Inherited from Eplan.EplApi.DataModel.PlacementPropertyList)
    Public PropertyOverloaded. Creator (change tracking) # 19033. (Inherited from Eplan.EplApi.DataModel.PlacementPropertyList)
    Public PropertyOverloaded. Revision change marker (from property comparison) # 10153. (Inherited from Eplan.EplApi.DataModel.PlacementPropertyList)
    Public PropertyOverloaded. Revision marker (from property comparison) # 10152. (Inherited from Eplan.EplApi.DataModel.PlacementPropertyList)
    Public PropertyOverloaded. Representation type / report type # 19021. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. User-defined property arrangement: Name # 19008. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. X coordinate # 19002. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyOverloaded. Y coordinate # 19003. (Inherited from Eplan.EplApi.DataModel.SymbolReferencePropertyList)
    Public PropertyAutomatically generated # 24001.  
    Public PropertyCounter target in cross-reference # 24351.  
    Public PropertyCross-reference (configurable) # 24300.  
    Public PropertyCross-reference for NFPA standard # 24302.  
    Public PropertyCross-reference # 24301.  
    Public PropertySeparator between interruption point and cross-reference # 24350.  
    Public PropertyInterruption point: Description # 24810.  
    Public PropertyInterruption point: Description (automatic) # 24811.  
    Public PropertyTarget of interruption point # 24000.  
    Public PropertyDisplay of all counter targets # 24021.  
    Public PropertyDisplay all cross-references # 24020.  
    Public PropertySort code (interruption point) # 24809.  
    Public PropertyMessages in message management # 20930.  
    Public PropertyStorableObject to which this property list is connected. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList)
    Public PropertyOverloaded. Method used by operator[] in order to access indexed properties.  
    Public PropertyOverloaded. Object identification # 2000. (Inherited from Eplan.EplApi.DataModel.StorableObjectPropertyList)
    Public PropertyOverloaded. Subproject number # 25101. (Inherited from Eplan.EplApi.DataModel.FunctionBasePropertyList)
    Public PropertyChange protection # 3014.  
    Public PropertyOverloaded. Change protection (hierarchical) # 3015. (Inherited from Eplan.EplApi.DataModel.PlacementPropertyList)
    Top
    Public Methods
     NameDescription
    Public MethodOverloaded. Copies properties to other property list. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList)
    Public MethodDestructor for deterministic finalization of InterruptionPointPropertyList object. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList)
    Public MethodOverloaded. Checks property existence for used obiect.  
    Public MethodInternal method. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList)
    Top
    See Also