.. index:: 
  !DocumentInfo.description Property

.. _id3_document_document_info_description_class_member:

===============================================================================
DocumentInfo.description Property
===============================================================================

Module: :ref:`DocumentInfo<id3_document_document_info_class>`

Type: string

Definition
----------

The document description.


.. tab-set::

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

    .. code:: Python

      description: str


    **Exceptions**

      .. line-block::

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

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

    .. code:: Dart

      String get description => getDescription();


    **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 string description
      {
          get => Getdescription();
      }


    **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 String getDescription() 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 description: String
          get {
              return try! getDescription()
          }
      }


    **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 id3DocumentInfo_GetDescription (ID3_DOCUMENT_INFO hDocumentInfo, char * description, int * descriptionSize)

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

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

