# Comment puis-je obtenir des informations sur le type d'attribut?

 1. [FAQ](/fr/faq)
2. »
3. [L’IFC](/fr/faq/lifc)

Actuellement la seule façon d'obtenir des informations sur le type d'attribut est de caser de la manière suivante:

```
OdArray<OdDAI::AttributePtr>::iterator nextAttribute = leftEntityAttributeFilter.begin();
    for (; nextAttribute != leftEntityAttributeFilter.end(); ++nextAttribute)
    {
      OdDAI::AttributePtr pAttrib = *nextAttribute;
      OdDAI::InverseAttributePtr pInverse = OdDAI::InverseAttribute::cast(pAttrib);
      if (!pInverse.isNull())
      {
        odPrintConsoleString(L"\nInverse attribute `%s` (%lu)", pInverse->name().c_str(), (OdUInt64)leftIterator->id().getHandle());
      }
    }

```
