API Help
Eplan.EplApi.DataModel Namespace / ArticleReference Class / Properties Property
Example

In This Topic
    Properties Property (ArticleReference)
    In This Topic
    Represents ArticleReference properties
    Syntax
    public new ArticleReferencePropertyList Properties {get;}
    public:
    new property ArticleReferencePropertyList^ Properties {
       ArticleReferencePropertyList^ get();
    }
    Remarks
    Properties from ArticleReferencePropertyList have another ids than these from parent object or in the 'Part reference data' tab in GUI. In order to use the same ids as in GUI, please use parent object ids (see the first example).
    Example
    Setting article reference properties by parent object ids Setting article reference properties by ArticleReferencePropertyList ids
    articleReference.ParentObject.Properties[Properties.Function.FUNC_ARTICLE_NOTE, 1] = "ARTICLE_NOTE3";
    string note = articleReference.ParentObject.Properties[Properties.Function.FUNC_ARTICLE_NOTE, 1];
    articleReference.Properties[Properties.ArticleReference.ARTICLE_NOTE] = "note";
    string note = articleReference.Properties[Properties.ArticleReference.ARTICLE_NOTE];
    See Also