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

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

    Property Value

    P8 properties of the FunctionBase.
    Exceptions
    Remarks
    Do NOT use this function for TerminalStrip and PlugStrip objects.
    Example
    FunctionBase func;
    func.Properties[Properties.FunctionBase.DESIGNATION_PLANT] = "AP";
    func.Properties[Properties.FunctionBase.FUNC_COMMENT] = "that is a good function";
    string s = func.Properties[Properties.FunctionBase.FUNC_DEVICETAG_FULL];
    See Also