:class:`PartLink` ================= .. py:class:: ansys.speos.core.kernel.part.PartLink(db, key) Bases: :py:obj:`ansys.speos.core.kernel.crud.CrudItem` Link object for a part in database. :Parameters: **db** : :obj:`ansys.speos.core.kernel.part.PartStub` Database to link to. **key** : :class:`python:str` Key of the part in the database. .. !! processed by numpydoc !! .. py:currentmodule:: PartLink Overview -------- .. tab-set:: .. tab-item:: Methods .. list-table:: :header-rows: 0 :widths: auto * - :py:attr:`~get` - Get the datamodel from database. * - :py:attr:`~set` - Change datamodel in database. * - :py:attr:`~delete` - Remove datamodel from database. .. tab-item:: Special methods .. list-table:: :header-rows: 0 :widths: auto * - :py:attr:`~__str__` - Return the string representation of the part. Import detail ------------- .. code-block:: python from ansys.speos.core.kernel.part import PartLink Method detail ------------- .. py:method:: __str__() Return the string representation of the part. .. !! processed by numpydoc !! .. py:method:: get() Get the datamodel from database. :Returns: :obj:`part.Part` Part datamodel. .. !! processed by numpydoc !! .. py:method:: set(data) Change datamodel in database. :Parameters: **data** : :obj:`part.Part` New part datamodel. .. !! processed by numpydoc !! .. py:method:: delete() Remove datamodel from database. .. !! processed by numpydoc !!