.. index:: 
  !PointList.removeAt Method
  
.. _id3_document_point_list_remove_at_class_method:

===============================================================================
PointList.removeAt Method
===============================================================================

Module: :ref:`PointList<id3_document_point_list_class>`

Definition
----------

Removes an element of the PointList object.


.. tab-set::

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

      .. code:: Python

        remove_at(self, index: int) -> None

      **Parameters**

        .. line-block::

          ``index`` int
          :guilabel:`in` Index of the Point item to remove.


      **Exceptions**

        .. line-block::

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


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

      .. code:: Dart

        void removeAt(int index)

      **Parameters**

        .. line-block::

          ``index`` int
          :guilabel:`in` Index of the Point item to remove.


      **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 void RemoveAt(int index)

      **Parameters**

        .. line-block::

          ``index`` int
          :guilabel:`in` Index of the Point item to remove.


      **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 void removeAt(int index) throws DocumentException

      **Parameters**

        .. line-block::

          ``index`` int
          :guilabel:`in` Index of the Point item to remove.


      **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 removeAt(index: Int32) throws

      **Parameters**

        .. line-block::

          ``index`` Int32
          :guilabel:`in` Index of the Point item to remove.


      **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 id3DocumentPointList_RemoveAt (
            ID3_DOCUMENT_POINT_LIST hPointList, 
            int index)

      **Parameters**

        .. line-block::

          ``hPointList`` :ref:`ID3_DOCUMENT_POINT_LIST<id3_document_point_list_class>`
          :guilabel:`in` Handle to the PointList object.

          ``index`` int
          :guilabel:`in` Index of the Point item to remove.


      **Returns**

        .. line-block::

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


