I create a TLabel and add text to it dynamically, and that works just fine. But I need to know if the label word-wrapped the text because it was too large for the label's width, or if there was no need to it to wrap because the text was shorter than the label's width.
I don't mean to know whether the label's WordWrap property is set to true or false, I want to know if it wrapped the text or it didn’t.
The TLabel has the AutoSize and WordWrap properties set to true, in case that matters.