pyvista.Actor.pickable#

property Actor.pickable: bool[source]#

Return or set actor pickability.

Examples

Create an actor using the pyvista.Plotter and then make the actor unpickable.

>>> import pyvista as pv
>>> pl = pv.Plotter()
>>> actor = pl.add_mesh(pv.Sphere())
>>> actor.pickable = False
>>> actor.pickable
False
https://d33wubrfki0l68.cloudfront.net/5a2b5795df20301c523a894fcac95df645ef0159/d70af/_images/pyvista-actor-pickable-1_00_00.png