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

In This Topic
    IdentifyingNameParts Property
    In This Topic
    Returns a property list with the identifiying segments of the Function structure identifiers.
    Syntax
    public virtual FunctionBasePropertyList IdentifyingNameParts {get;}
    public:
    virtual property FunctionBasePropertyList^ IdentifyingNameParts {
       FunctionBasePropertyList^ get();
    }

    Property Value

    FunctionBasePropertyList with the identifiying segments of the Function structure identifiers
    Example
    The following example shows how to filter by identifying name:
    private Function[] GetFunctionsByIdentifyingNameParts(Function oFunction)
    {
        var oFinder = new DMObjectsFinder(m_oProject);
        var oFilter = new FunctionsFilter();
    
        oFilter.SetIdentifyingPropertyList(oFunction.IdentifyingNameParts);
    
        Function[] oResult = oFinder.GetFunctions(oFilter);
        return oResult;
    
    
    }
    
    
    See Also