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

In This Topic
    IsIndexed Property (PropertyDefinition)
    In This Topic
    Allows to check if a given property is indexed.
    Syntax
    public bool IsIndexed {get;}
    public:
    property bool IsIndexed {
       bool get();
    }

    Property Value

    • true = Property is indexed

    • false = Property is not indexed

    Exceptions
    ExceptionDescription
    Thrown when called for PropertyDefinition created as a conversion from other type.
    Remarks
    Can only be called after retrieving a property list from the given API class.
    Example
    Article article = myProject.Articles[0]; // A valid Article object
    
    bool isIndexed = article.Properties.ARTICLE_HEIGHT.Definition.IsIndexed;
    
    
    
    See Also