API Help
Eplan.EplApi.DataModel.Planning Namespace / PlanningObject Class / Properties Property
Example

In This Topic
    Properties Property
    In This Topic
    EPLAN properties of the PlanningObject object.
    Syntax
    public new PlanningObjectPropertyList Properties {get;}
    public:
    new property PlanningObjectPropertyList^ Properties {
       PlanningObjectPropertyList^ get();
    }
    Example
    Function func;
    func.Properties[Properties.Function.DESIGNATION_PLANT] = "AP";
    func.Properties[Properties.Function.FUNC_COMMENT] = "that is a good function";
    string s = func.Properties[Properties.Function.FUNC_DEVICETAG_FULL];
    See Also