Modules.Interfaces: Leere Knoten können zu einer Exception führen.

This commit is contained in:
PitzM 2025-02-25 10:47:14 +01:00
parent 13ff63d6e0
commit 7e9ed47ad9

View File

@ -343,7 +343,12 @@ Public Class PropertyValues
Return DoGetFinalPropValue(Value)
Else
Return Value.ToString
If Value = Nothing Then
Return Nothing
Else
Return Value.ToString
End If
End If
End Function