# Examples from pyvista.Property.representation
# =============================================

# Get the default representation.
import pyvista as pv
prop = pv.Property()
prop.representation

# Set the representation using the enum.
from pyvista.plotting.opts import RepresentationType
prop.representation = RepresentationType.WIREFRAME
prop.representation

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

