Eplan Platform API
Eplan.EplApi.DataModel Namespace / Article Class / Properties Property
Example

In This Topic
    Properties Property (Article)
    In This Topic
    .NET Property enabling access to P8 properties of the Article object.
    Syntax
    public new ArticlePropertyList Properties {get;}
    public:
    new property ArticlePropertyList^ Properties {
       ArticlePropertyList^ get();
    }

    Property Value

    P8 properties of the Article.
    Example
    Article a;//a valid Article
    a.Properties[Properties.Article.ARTICLE_NOTE] = "note";
    string s = a.Properties[Properties.Article.ARTICLE_SUPPLIER];
    See Also