我试图InfoBefore文本文件的文本存储到一个变量,然后将其与自定义字体颜色和背景色装入RTFEditor。
当我尝试加载从上面说的可变文本“只写属性”
我需要如何将这个两件事情一起做(存储在var文本,加载在自定义颜色和背景色的RTF文本)没有复杂的东西太多,因为我不知道帕斯卡尔一个明显的例子。
这是代码:
const
FontColor: AnsiString = 'cf0';
BackColor: AnsiString = 'cf1'
var
OldText: AnsiString;
procedure InitializeWizard();
begin
// I try to store the text in a variable
Oldtext := WizardForm.InfoBeforeMemo.RTFText;
// I try to load from the variable, with a new font color for ALL the text, and a new BackColor.
WizardForm.InfoBeforeMemo.RTFText := Oldtext + FontColor
end;