
###############################
HoopsCuttingPlaneToolbarElement
###############################

.. js:class:: wvc.HoopsCuttingPlaneToolbarElement

   A toolbar component for managing individual cutting plane operations.
   
   This component provides a set of action buttons for manipulating a specific cutting plane within a cutting section. It offers functionality to customize, invert, toggle visibility, and remove cutting planes.
   
   The toolbar automatically updates when the associated cutting plane changes and only renders if a valid cutting plane exists at the specified indices.
   
   .. rubric:: Examples
   
   
   .. code-block:: html
   
      <hoops-cutting-plane-toolbar
        sectionIndex="0"
        planeIndex="1"
        .service=${cuttingService}
        @change=${this.handlePlaneCustomize}>
      </hoops-cutting-plane-toolbar>
   
   .. code-block:: typescript
   
      // Listen for customize events
      toolbar.addEventListener('change', (event) => {
        console.log('User wants to customize cutting plane');
        // Open customization dialog
      });
   
   .. rubric:: Custom Element
   
   
   ``hoops-cutting-plane-toolbar``
   
   .. rubric:: Events
   
   
   **change**
   
   
      Dispatched when the customize button is clicked
   
   
   
   Index
   =====
   
   .. rubric:: Constructors
   
   
   .. rst-class:: api-xref-list
   
   
   * :js:func:`~wvc.HoopsCuttingPlaneToolbarElement.constructor`
   
   .. rubric:: Properties
   
   
   .. rst-class:: api-xref-list
   
   
   * :js:data:`~wvc.HoopsCuttingPlaneToolbarElement.planeIndex`
   * :js:data:`~wvc.HoopsCuttingPlaneToolbarElement.sectionIndex`
   * :js:data:`~wvc.HoopsCuttingPlaneToolbarElement.service`
   
   



.. rst-class:: kind-group kind-constructors

.. rubric:: Constructors
   :class: kind-group-title


.. js:method:: wvc.HoopsCuttingPlaneToolbarElement.constructor

      .. rst-class:: sig-pretty-signature
      
         | HoopsCuttingPlaneToolbarElement(): :js:class:`HoopsCuttingPlaneToolbarElement <wvc.HoopsCuttingPlaneToolbarElement>`
      
      Constructs a new HoopsCuttingPlaneToolbarElement.
      
      Initializes the component with default property values and binds the invalidateToolbar method for proper event handling context.
      
      **Returns**\ : :js:class:`HoopsCuttingPlaneToolbarElement <wvc.HoopsCuttingPlaneToolbarElement>`
      



.. rst-class:: kind-group kind-properties

.. rubric:: Properties
   :class: kind-group-title


.. js:data:: wvc.HoopsCuttingPlaneToolbarElement.planeIndex

      .. rst-class:: sig-pretty-signature
      
         | planeIndex: *number*
      
      The index of the cutting plane within the specified cutting section. Used to identify the specific plane to be manipulated by toolbar actions.
      
      .. rubric:: Default
      
      
      `````ts
      -1
      `````
      



.. js:data:: wvc.HoopsCuttingPlaneToolbarElement.sectionIndex

      .. rst-class:: sig-pretty-signature
      
         | sectionIndex: *number*
      
      The index of the cutting section containing the target cutting plane. Used to identify which section contains the plane to be manipulated.
      
      .. rubric:: Default
      
      
      `````ts
      -1
      `````
      



.. js:data:: wvc.HoopsCuttingPlaneToolbarElement.service

      .. rst-class:: sig-pretty-signature
      
         | service: (*None* | :js:class:`ICuttingService <wvc.ICuttingService>`\ )
      
      The cutting service instance that provides cutting plane operations. All toolbar actions are performed through this service interface.
      
      .. rubric:: Default
      
      
      `````ts
      null
      `````
      




