Eplan Platform API
Eplan.EplApi.DataModel Namespace / PropertyDefinition Class / IsNamePart Property
Example

In This Topic
    IsNamePart Property
    In This Topic
    Allows to check if a given property is name part.
    Syntax
    public bool IsNamePart {get;}
    public:
    property bool IsNamePart {
       bool get();
    }

    Property Value

    • true = Property is name part

    • false = Property is not name part

    Remarks
    Can only be called after retrieving a property list from the given API class.
    Example
    Function function = page.Functions[0]; // A valid Function object
    
    bool isNamePart = function.Properties.FUNC_COUNTER.Definition.IsNamePart;
    
    
    
    See Also