Is there a way to wrap the text in a TPanel.Caption in Delphi (in my case Delphi 6)?
thanks!
|
|
|
|
|
|
|
Not by default, I'm afraid. As you can see from the sourcecode for TPanel, the text is drawn by the DrawText( )-windows api:
You can either derive and override the Paint-method, or you could just use a label instead. |
||||||||||
|