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

IsReadOnly Property (PropertyDefinition)
Allows to check if a given property is read-only.
Syntax
public bool IsReadOnly {get;}

Property Value

true : Property is read-only

false : Property is not read-only

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.IsReadOnly;
See Also