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

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

    Property Value

    • true = Property is licensed

    • false = Property is not licensed

    Remarks
    Can only be called after retrieving a property list from the given API class.
    Example
    Article article = myProject.Articles[0]; // A valid Article object
    
    bool isPropertyLicensed = article.Properties.ARTICLE_HEIGHT.Definition.IsPropertyLicensed;
    
    
    
    See Also