MeshVertexColorList
===================

.. py:module:: rhino3dm

.. py:class:: MeshVertexColorList

   .. py:attribute:: Count

      int: Gets or sets the number of mesh colors.

   .. py:attribute:: Capacity

      int: Gets or sets the total number of vertex colors the internal data structure can hold without resizing.

   .. py:method:: __len__()

      [todo] add documentation

   .. py:method:: __getitem__()

      [todo] add documentation

   .. py:method:: __setitem__()

      [todo] add documentation

   .. py:method:: Clear()

      Clears the vertex color list on the mesh.


      :rtype: void

   .. py:method:: Add(red, green, blue)

      Adds a new vertex color to the end of the color list.

      :param int red: Red component of color, must be in the 0~255 range.
      :param int green: Green component of color, must be in the 0~255 range.
      :param int blue: Blue component of color, must be in the 0~255 range.

      :return: The index of the newly added color.

      :rtype: int
