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

In This Topic
    IsReadOnly Property (PropertyDefinition)
    In This Topic
    Allows to check if a given property is read-only.
    Syntax
    public bool IsReadOnly {get;}
    public:
    property bool IsReadOnly {
       bool 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