API Help
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 be called only after retrieving form given API class property list.
    Example
    Function function; //a valid function object
    
    bool b = function.Properties.FUNC_COUNTER.Definition.IsNamePart;
    See Also