Eplan Platform API
Eplan.EplApi.DataModel Namespace / Connection Class / Properties Property
Example

In This Topic
    Properties Property (Connection)
    In This Topic
    .NET Property enabling access to P8 properties of the Connection object.
    Syntax
    public new ConnectionPropertyList Properties {get;}
    public:
    new property ConnectionPropertyList^ Properties {
       ConnectionPropertyList^ get();
    }

    Property Value

    P8 properties of the Connection.
    Example
    Connection conn;//a valid connection
    conn.Properties[Properties.Connection.DESIGNATION_PLANT] = "AP";
    conn.Properties[Properties.Connection.CONNECTION_NAME] = "Connection name";
    string name = conn.Properties[Properties.Connection.CONNECTION_NAME];
    See Also