Please provide a string property which can be used to set the caption.
Rationale:
There is a class-name but no caption-name.
If you want to set a custom caption on the TabSheet, it would be nice if you can store a caption on a UniFrame.property which then can retrieved when
Example code:
ts := TUniTabSheet.Create(Self)
...
frC := TUniFrameClass(FindClass(FClassName));
ts.Caption = frC.Caption; <---
...