STKObjectCutCopyPasteEventArguments =================================== .. py:class:: ansys.stk.core.stkobjects.STKObjectCutCopyPasteEventArguments Arguments for the OnStkObjectPreCut, OnStkObjectCopy and OnStkObjectPaste events. .. py:currentmodule:: STKObjectCutCopyPasteEventArguments Overview -------- .. tab-set:: .. tab-item:: Properties .. list-table:: :header-rows: 0 :widths: auto * - :py:attr:`~ansys.stk.core.stkobjects.STKObjectCutCopyPasteEventArguments.selected_object_path` - Selected Object path that is being cut, copied or pasted. * - :py:attr:`~ansys.stk.core.stkobjects.STKObjectCutCopyPasteEventArguments.object_paths` - Return an array of object paths that are cut, copied or pasted. * - :py:attr:`~ansys.stk.core.stkobjects.STKObjectCutCopyPasteEventArguments.pasted_object_paths` - Return an array of object paths that are being pasted. The new object paths corresposnd to the old paths at the same array location in ObjectPaths array. Import detail ------------- .. code-block:: python from ansys.stk.core.stkobjects import STKObjectCutCopyPasteEventArguments Property detail --------------- .. py:property:: selected_object_path :canonical: ansys.stk.core.stkobjects.STKObjectCutCopyPasteEventArguments.selected_object_path :type: str Selected Object path that is being cut, copied or pasted. .. py:property:: object_paths :canonical: ansys.stk.core.stkobjects.STKObjectCutCopyPasteEventArguments.object_paths :type: list Return an array of object paths that are cut, copied or pasted. .. py:property:: pasted_object_paths :canonical: ansys.stk.core.stkobjects.STKObjectCutCopyPasteEventArguments.pasted_object_paths :type: list Return an array of object paths that are being pasted. The new object paths corresposnd to the old paths at the same array location in ObjectPaths array.