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 be called only after retrieving form given API class property list.
    Example
    Article article; //a valid article object
    
    bool b = article.Properties.ARTICLE_HEIGHT.Definition.IsPropertyLicensed;
    See Also