InfoBefore テキストファイルのテキストを変数に格納し、カスタム フォントの色と背景色を使用して RTFEditor にロードしようとしています。
変数からテキストを読み込もうとすると、「書き込み専用プロパティ」と表示されます
私はパスカルを知らないので、物事をあまり複雑にすることなく、この2つのことを一緒に行う方法の明示的な例が必要です(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;