.. index:: 
  !MrzReadingResult.bounds Property

.. _id3_document_mrz_reading_result_bounds_class_member:

===============================================================================
MrzReadingResult.bounds Property
===============================================================================

Module: :ref:`MrzReadingResult<id3_document_mrz_reading_result_class>`

Type: :ref:`PointList<id3_document_point_list_class>`

Definition
----------

Boundaries of the MRZ detected, in following order: top-left, top-right, bottom-right, bottom-left.


.. tab-set::

  .. tab-item:: Python
    :sync: Python

    .. code:: Python

      bounds: PointList


    **Exceptions**

      .. line-block::

        :ref:`DocumentException<id3_document_document_exception>`
        An error has occurred during Document Library execution.

  .. tab-item:: Dart
    :sync: Dart

    .. code:: Dart

      PointList get bounds => getBounds();


    **Exceptions**

      .. line-block::

        :ref:`DocumentException<id3_document_document_exception>`
        An error has occurred during Document Library execution.

  .. tab-item:: C#
    :sync: C#

    .. code:: C#

      public PointList bounds
      {
          get => Getbounds();
      }


    **Exceptions**

      .. line-block::

        :ref:`DocumentException<id3_document_document_exception>`
        An error has occurred during Document Library execution.

  .. tab-item:: Java
    :sync: Java

    .. code:: Java

      public PointList getBounds() throws DocumentException


    **Exceptions**

      .. line-block::

        :ref:`DocumentException<id3_document_document_exception>`
        An error has occurred during Document Library execution.

  .. tab-item:: Swift
    :sync: Swift

    .. code:: Swift

      public var bounds: PointList
          get {
              return try! getBounds()
          }
      }


    **Exceptions**

      .. line-block::

        :ref:`DocumentException<id3_document_document_exception>`
        An error has occurred during Document Library execution.

  .. tab-item:: C
    :sync: C

    .. code:: C

      int id3DocumentMrzReadingResult_GetBounds (ID3_DOCUMENT_MRZ_READING_RESULT hMrzReadingResult, ID3_DOCUMENT_POINT_LIST hBounds)

    **Returns**
   
      .. line-block::

        ``int``
        An error code.
        See :ref:`id3DocumentError<id3_document_document_error_enum>` file for the list of possible error codes.

