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

In This Topic
    IsInternal Property
    In This Topic
    Allows to check if a given property is marked as internal. Don't use this property.
    Syntax
    public bool IsInternal {get;}
    public:
    property bool IsInternal {
       bool get();
    }

    Property Value

    • true = Property is internal

    • false = Property is not internal

    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 isInternal = function.Properties.FUNC_COUNTER.Definition.IsInternal;
    
    
    
    See Also