Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以TMemo自动显示从 db 调整为宽度的线TMemo?我的意思是,在我的数据库中,我有:“123456789123456789123”,例如,我的 tmemo 的宽度只有 10 个字符。
TMemo
是否可以TMemo以这种方式自动显示文本?
123456789 123456789 123
有什么建议吗?
这可以使用以下WordWrap属性来实现:
WordWrap
Memo1.WordWrap := True;
此更改必须在代码中进行,因为备忘录的WordWrap属性未发布。