.. role:: clio-static
   :class: clio-flag clio-flag-static


###############################
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.
   
   
   Index
   =====
   
   .. rubric:: Constructors
   
   
   .. rst-class:: api-xref-list
   
   
   * :js:func:`~wvc.HoopsCuttingPlaneToolbarElement.constructor`
   
   .. rubric:: Properties
   
   
   .. rst-class:: api-xref-list
   
   
   * :js:data:`~wvc.HoopsCuttingPlaneToolbarElement.styles`
   * :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.styles

      .. rst-class:: clio-flags
      
         :clio-static:`static`
      
      .. rst-class:: sig-pretty-signature
      
         | styles: *CSSResult*\ []
      
      Array of styles to apply to the element. The styles should be defined using the ? tag function, via constructible stylesheets, or imported from native CSS module scripts.
      
      Note on Content Security Policy:
      
      Element styles are implemented with ``<style>`` tags when the browser doesn't support adopted StyleSheets. To use such ``<style>`` tags with the style-src CSP directive, the style-src value must either include 'unsafe-inline' or ``nonce-<base64-value>`` with ``<base64-value>`` replaced be a server-generated nonce.
      
      To provide a nonce to use on generated ``<style>`` elements, set ``window.litNonce`` to a server-generated nonce in your page's HTML, before loading application code:
      
      .. code-block:: html
      
         <script>
           // Generated and unique per request:
           window.litNonce = 'a1b2c3d4';
         </script>
      



.. 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.
      



.. 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.
      



.. 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.
      




