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.
Delphi 中的函数Memo.Lines.Add('Some text')将字符串添加到备忘录的底部。是否有任何将文本添加到顶部的功能?
Memo.Lines.Add('Some text')
例如,如果Lines备忘录的属性包含:
Lines
string 1 string 2 string 3
我想string 0在string 1. 我怎样才能做到这一点?
string 0
string 1
该Lines属性是一个TStrings支持在指定行号插入的实例。这样做的方法是这样Insert调用的:
TStrings
Insert
Memo.Lines.Insert(0, 'string 0');