| 87 | # fmt: off |
| 88 | |
| 89 | class AnnotationObjectType(NamedTuple): |
| 90 | annotation_name: str |
| 91 | description: str |
| 92 | icon: str |
| 93 | data_type: Drawing.ANNOTATION_DATA_TYPE |
| 94 | |
| 95 | ANNOTATION_TYPES_DATA: dict[str, AnnotationObjectType] = { |
| 96 | "DIMENSION": AnnotationObjectType("Dimension", "Add dimensions annotation.\nMeasurement values can be hidden through ShowDescriptionOnly property\nof BBIM_Dimension property set", "FIXED_SIZE", "curve"), |