* The label of the element.
()
| 764 | * The label of the element. |
| 765 | */ |
| 766 | public get label(): TLabel { |
| 767 | if (this.#parsedId == null) { |
| 768 | this.#parsedId = parseElementId<TLabel & string>(this[$StoredElement].id as any); |
| 769 | } |
| 770 | return this.#parsedId[0]; |
| 771 | } |
| 772 | |
| 773 | /** |
| 774 | * The uuid of the element. |
nothing calls this directly
no test coverage detected