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

IsPropertyLicensed Property
Allows to check if a given property is licensed.
Syntax
public bool IsPropertyLicensed {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