本文介绍了delphi textrect wordwrap的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Delphi 7中使用Canvas.TextRect在屏幕上输出一些东西。
I am using Canvas.TextRect in Delphi 7 to output something on the screen.
我需要我的文本被包装在矩形中。
I need my text to be word wrapped in the rectangle.
推荐答案
您需要使用带有DT_WORDBREAK标志的DrawText(或DrawTextEx)。
You need to use DrawText (or DrawTextEx) with the DT_WORDBREAK flag.
请参阅。
这篇关于delphi textrect wordwrap的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!