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

UniversalPropertyList Class
UniversalPropertyList is base interface for all property list.
Inheritance Hierarchy

System.Object
   Eplan.EplApi.DataModel.UniversalPropertyList
      Eplan.EplApi.DataModel.StorableObjectPropertyList

Syntax
[DefaultMember("Property")]
public class UniversalPropertyList 
Remarks
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 ConstructorThis constructor creates local property list. Each function of UniversalPropertyList will work on local property list.  
Top
Public Properties
 NameDescription
Public PropertyReturns array of property ids. Returns array of AnyPropertyId objects.  
Public PropertyReturns array of PropertyValue objects.  
Public PropertyStorableObject to which this property list is connected.  
Public PropertyOverloaded. Method used by operator[] in order to access indexed properties by identifying name.  
Top
Public Methods
 NameDescription
Public MethodOverloaded. Copies properties to other property list.  
Public MethodDestructor for deterministic finalization of UniversalPropertyList object.  
Public MethodOverloaded. Checks property existence for used object.  
Public MethodInternal method.  
Top
See Also