> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Compatibilité des objets supplémentaires avec la version 10

> Modifications de compatibilité de l’API des objets supplémentaires entre ABBYY FineReader Engine 12 et 10.

Cette section décrit toutes les modifications apportées aux objets supplémentaires susceptibles de nécessiter des changements dans le code source de vos applications.

<table>
  <thead>
    <tr>
      <th>
        <p>
          <strong>Objet/Énumération</strong>
        </p>
      </th>

      <th>
        <p>
          <strong>Propriété/Méthode/Constante</strong>
        </p>
      </th>

      <th>
        <p>
          <strong>Que s’est-il passé ?</strong>
        </p>
      </th>

      <th>
        <p>
          <strong>Commentaire</strong>
        </p>
      </th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        <p>
          <strong>LongsCollection</strong>
        </p>
      </td>

      <td>
        <br />
      </td>

      <td>
        <p>Renommé</p>
      </td>

      <td>
        <p>
          Le nouveau nom de l’objet est{" "}

          <strong>
            <a href="/fr/fine-reader/engine/api-reference/supplementary-objects-and-methods/intscollection">IntsCollection</a>
          </strong>

          . Il a été renommé afin d’assurer la cohérence avec le remplacement du type de données <strong>long</strong> par le type de données <strong>int</strong>.
        </p>

        <p>Le nouvel objet diffère de l’ancien sur les points suivants :</p>

        <ul>
          <li>
            Les méthodes <strong>Insert</strong>, <strong>Remove</strong>, <strong>RemoveAll</strong> ont été renommées respectivement en{" "}

            <strong>
              <a href="/fr/fine-reader/engine/visual-components-reference/supplementary-objects/spellwordcollection/insertat-method">InsertAt</a>
            </strong>

            ,{" "}

            <strong>
              <a href="/fr/fine-reader/engine/visual-components-reference/supplementary-objects/spellwordcollection/deleteat-method">DeleteAt</a>
            </strong>

            ,{" "}

            <strong>
              <a href="/fr/fine-reader/engine/visual-components-reference/supplementary-objects/spellwordcollection/deleteall-method">DeleteAll</a>
            </strong>

            . Les méthodes de toutes les collections ont été renommées afin d’être uniformisées.
          </li>

          <li>
            La méthode <strong>CopyFrom </strong>n’est plus prise en charge. Pour créer une copie de la collection, vous pouvez créer une nouvelle collection à l’aide de la méthode{" "}

            <strong>
              <a href="/fr/fine-reader/engine/api-reference/engine-object-iengine-interface/creation-methods/createlessobjectgreater-methods">IEngine::CreateIntsCollection</a>
            </strong>

            {" "}

            et y ajouter les mêmes éléments à l’aide de la méthode{" "}

            <strong>
              <a href="/fr/fine-reader/engine/visual-components-reference/supplementary-objects/spellwordcollection/add-method">Add</a>
            </strong>

            .
          </li>
        </ul>
      </td>
    </tr>

    <tr>
      <td rowspan="2">
        <p>
          <strong>
            <a href="/fr/fine-reader/engine/api-reference/supplementary-objects-and-methods/stringscollection">StringsCollection</a>
          </strong>
        </p>
      </td>

      <td>
        <p>
          <strong>Insert</strong>
        </p>

        <p>
          <strong>Remove</strong>
        </p>

        <p>
          <strong>RemoveAll</strong>
        </p>
      </td>

      <td>
        <p>Renommé</p>
      </td>

      <td>
        <p>
          Les nouveaux noms des méthodes sont{" "}

          <strong>
            <a href="/fr/fine-reader/engine/visual-components-reference/supplementary-objects/spellwordcollection/insertat-method">InsertAt</a>
          </strong>

          ,{" "}

          <strong>
            <a href="/fr/fine-reader/engine/visual-components-reference/supplementary-objects/spellwordcollection/deleteat-method">DeleteAt</a>
          </strong>

          ,{" "}

          <strong>
            <a href="/fr/fine-reader/engine/visual-components-reference/supplementary-objects/spellwordcollection/deleteall-method">DeleteAll</a>
          </strong>

          . Les méthodes de toutes les collections ont été renommées afin d’être harmonisées.
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          <strong>CopyFrom</strong>
        </p>
      </td>

      <td>
        <p>Supprimée</p>
      </td>

      <td>
        <p>
          La méthode n’est plus prise en charge. Pour créer une copie de la collection, vous pouvez créer une nouvelle collection à l’aide de la méthode{" "}

          <strong>
            <a href="/fr/fine-reader/engine/api-reference/engine-object-iengine-interface/creation-methods/createlessobjectgreater-methods">IEngine::CreateStringsCollection</a>
          </strong>

          {" "}

          et y ajouter les mêmes éléments à l’aide de la méthode{" "}

          <strong>
            <a href="/fr/fine-reader/engine/visual-components-reference/supplementary-objects/spellwordcollection/add-method">Add</a>
          </strong>

          .
        </p>
      </td>
    </tr>

    <tr>
      <td rowspan="2">
        <p>
          <strong>
            <a href="/fr/fine-reader/engine/api-reference/supplementary-objects-and-methods/regionscollection">RegionsCollection</a>
          </strong>
        </p>
      </td>

      <td>
        <p>
          <strong>Insert</strong>
        </p>

        <p>
          <strong>Remove</strong>
        </p>

        <p>
          <strong>RemoveAll</strong>
        </p>
      </td>

      <td>
        <p>Renommé</p>
      </td>

      <td>
        <p>
          Les nouveaux noms des méthodes sont{" "}

          <strong>
            <a href="/fr/fine-reader/engine/visual-components-reference/supplementary-objects/spellwordcollection/insertat-method">InsertAt</a>
          </strong>

          ,{" "}

          <strong>
            <a href="/fr/fine-reader/engine/visual-components-reference/supplementary-objects/spellwordcollection/deleteat-method">DeleteAt</a>
          </strong>

          ,{" "}

          <strong>
            <a href="/fr/fine-reader/engine/visual-components-reference/supplementary-objects/spellwordcollection/deleteall-method">DeleteAll</a>
          </strong>

          . Les méthodes de toutes les collections ont été renommées afin d’être harmonisées.
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          <strong>CopyFrom</strong>
        </p>
      </td>

      <td>
        <p>Supprimée</p>
      </td>

      <td>
        <p>
          La méthode n’est plus prise en charge. Pour créer une copie de la collection, vous pouvez créer une nouvelle collection à l’aide de la méthode{" "}

          <strong>
            <a href="/fr/fine-reader/engine/api-reference/engine-object-iengine-interface/creation-methods/createlessobjectgreater-methods">IEngine::CreateRegionsCollection</a>
          </strong>

          {" "}

          , puis y ajouter les mêmes éléments à l’aide de la méthode{" "}

          <strong>
            <a href="/fr/fine-reader/engine/visual-components-reference/supplementary-objects/spellwordcollection/add-method">Add</a>
          </strong>

          {" "}

          .
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          <strong>DocumentInfo</strong>
        </p>
      </td>

      <td>
        <br />
      </td>

      <td>
        <p>Supprimé</p>
      </td>

      <td>
        <p>Les méthodes nécessitant un objet de ce type ont été supprimées.</p>
      </td>
    </tr>

    <tr>
      <td>
        <br />
      </td>

      <td>
        <p>
          <strong>DocumentContentInfo</strong>
        </p>
      </td>

      <td>
        <p>Supprimé</p>
      </td>

      <td>
        <p>
          L’objet contenant des informations sur l’auteur, les mots-clés, le sujet et le titre du document est accessible via la{" "}

          <strong>
            <a href="/fr/fine-reader/engine/api-reference/document-related-objects/frdocument#documentcontentinfo">DocumentContentInfo</a>
          </strong>

          {" "}

          propriété de l’objet <strong>FRDocument</strong>.
        </p>
      </td>
    </tr>

    <tr>
      <td>
        <p>
          <strong>IRecognizedPages</strong>
        </p>
      </td>

      <td>
        <br />
      </td>

      <td>
        <p>Supprimé</p>
      </td>

      <td>
        <p>Les méthodes nécessitant un objet de ce type ont été supprimées.</p>
      </td>
    </tr>
  </tbody>
</table>
