Eplan Platform API
Eplan.EplApi.DataModel.MasterData Namespace / SymbolPropertyList Class
Members Example

In This Topic
    SymbolPropertyList Class
    In This Topic
    This class represents collection of properties of Symbol class. Please check also base classes for other properties which are available for Symbol objects: Eplan.EplApi.DataModel.StorableObjectPropertyList
    Inheritance Hierarchy

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

    Syntax
    [DefaultMember("Property")]
    public class SymbolPropertyList : Eplan.EplApi.DataModel.StorableObjectPropertyList 
    [DefaultMember("Property")]
    public ref class SymbolPropertyList : public Eplan.EplApi.DataModel.StorableObjectPropertyList 
    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 PropertyTopology: Direction for height difference # 20348.  
    Public PropertyAutoconnecting line: Color # 31005.  
    Public PropertyAutoconnecting line: Pattern length # 31018.  
    Public PropertyAutoconnecting line: Layer # 31017.  
    Public PropertyAutoconnecting line: Line type # 31015.  
    Public PropertyAutoconnecting line: Line thickness # 31016.  
    Public PropertyConnection designation # 31011.  
    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 PropertyFunction definition: Category # 20115.  
    Public PropertyFunction definition: Category / Group / Definition # 20188.  
    Public PropertyFunction definition: Area # 20088.  
    Public PropertyFunction definition # 20026.  
    Public PropertyFunction definition: Description # 20117.  
    Public PropertyFunction definition: Group # 20116.  
    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 PropertyLast editor: ID # 3010.  
    Public PropertyLast editor: E-mail # 3013.  
    Public PropertyLast editor: Name # 3011.  
    Public PropertyLast editor: Phone # 3012.  
    Public PropertyUse first variant of connection definition point symbol # 16030.  
    Public PropertyConnection point number # 16001.  
    Public PropertyTrade (function definition) # 16017.  
    Public PropertyCreation date # 16021.  
    Public PropertyCreator # 16020.  
    Public PropertyDefault property arrangement for variant A (alternative) # 16033.  
    Public PropertyDefault property arrangement for variant B (alternative) # 16034.  
    Public PropertyDefault property arrangement for variant C (alternative) # 16035.  
    Public PropertyDefault property arrangement for variant D (alternative) # 16036.  
    Public PropertyDefault property arrangement for variant E (alternative) # 16037.  
    Public PropertyDefault property arrangement for variant F (alternative) # 16038.  
    Public PropertyDefault property arrangement for variant G (alternative) # 16039.  
    Public PropertyDefault property arrangement for variant H (alternative) # 16041.  
    Public PropertyDefault property arrangement for variant A # 16004.  
    Public PropertyDefault property arrangement for variant B # 16005.  
    Public PropertyDefault property arrangement for variant C # 16006.  
    Public PropertyDefault property arrangement for variant D # 16007.  
    Public PropertyDefault property arrangement for variant E # 16008.  
    Public PropertyDefault property arrangement for variant F # 16009.  
    Public PropertyDefault property arrangement for variant G # 16014.  
    Public PropertyDefault property arrangement for variant H # 16015.  
    Public PropertyDefault variant # 16003.  
    Public PropertySymbol description # 16011.  
    Public PropertyDXF export: Name of block # 16040.  
    Public PropertySymbol variant assignment (internal) # 16031.  
    Public PropertyIntrinsically safe # 16019.  
    Public PropertyModification date (automatic) # 16023.  
    Public PropertyModification date (manual) # 16025.  
    Public PropertyLast editor: Logon name # 16022.  
    Public PropertyTarget tracking # 16010.  
    Public PropertyMain function # 16018.  
    Public PropertyModification note # 16024.  
    Public PropertySymbol for contact image of motor overload switch # 16032.  
    Public PropertyName # 16000.  
    Public PropertyNet-connecting # 16043.  
    Public PropertyNumber # 16002.  
    Public PropertyPCT type # 16016.  
    Public PropertyWith signal isolation # 16042.  
    Public PropertyPrevent new placement # 16012.  
    Public PropertyProperty arrangements # 16050.  
    Public PropertySafety function # 16044.  
    Public PropertySupplementary field # 16013.  
    Public PropertySymbol representation type (encoded) # 16027.  
    Public PropertySymbol representation type # 16028.  
    Public PropertyVersion # 16026.  
    Public PropertySymbol library # 15000.  
    Public PropertyTransformation point # 16045.  
    Top
    Public Methods
     NameDescription
    Public MethodOverloaded. Copies properties to other property list. (Inherited from Eplan.EplApi.DataModel.UniversalPropertyList)
    Public MethodDestructor for deterministic finalization of SymbolPropertyList 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