Source code for kittycad.models.annotation_text_alignment_y
from enum import Enum
[docs]class AnnotationTextAlignmentY(str, Enum):
"""Vertical Text alignment""" # noqa: E501
BOTTOM = "bottom"
CENTER = "center"
TOP = "top"
def __str__(self) -> str:
return str(self.value)