.. index:: 
  !DocumentAuthenticator.isFull Method
  
.. _id3_document_document_authenticator_is_full_class_method:

===============================================================================
DocumentAuthenticator.isFull Method
===============================================================================

Module: :ref:`DocumentAuthenticator<id3_document_document_authenticator_class>`

Definition
----------

Checks if the frame buffer is full and ready to authenticate for all holograms.


.. tab-set::

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

      .. code:: Python

        is_full(self) -> bool

      **Returns**

        .. line-block::

          ``bool``
          A value indicating whether the frame buffer is full.

      **Exceptions**

        .. line-block::

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


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

      .. code:: Dart

        bool isFull()

      **Returns**

        .. line-block::

          ``bool``
          A value indicating whether the frame buffer is full.

      **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 bool IsFull()

      **Returns**

        .. line-block::

          ``bool``
          A value indicating whether the frame buffer is full.

      **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 boolean isFull() throws DocumentException

      **Returns**

        .. line-block::

          ``boolean``
          A value indicating whether the frame buffer is full.

      **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 func isFull() throws -> Bool

      **Returns**

        .. line-block::

          ``Bool``
          A value indicating whether the frame buffer is full.

      **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 id3DocumentAuthenticator_IsFull (
            ID3_DOCUMENT_AUTHENTICATOR hDocumentAuthenticator, 
            bool * result)

      **Parameters**

        .. line-block::

          ``hDocumentAuthenticator`` :ref:`ID3_DOCUMENT_AUTHENTICATOR<id3_document_document_authenticator_class>`
          :guilabel:`in` Handle to the DocumentAuthenticator object.

          ``result`` bool *
          :guilabel:`out` A value indicating whether the frame buffer is full.


      **Returns**

        .. line-block::

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


