Objo strings can’t be Nothing, so I don’t think we should add IsNullOrEmpty or IsNullOrWhiteSpace as .NET/Delphi-style shared methods.
The existing empty-string check is:
If tfTemplateName.Text.IsEmpty() Then
...
End If
That said, I agree there’s room for a whitespace convenience method. I’ll add an instance method named IsEmptyOrWhitespace(), so the common validation case becomes:
If tfTemplateName.Text.IsEmptyOrWhitespace() Then
...
End If
I'll also add IsWhitespace().
This will be in the next release: https://feedback.objo.dev/feature/509