Вы можете сделать как
begin
// Get Text property
txtValue.text := TfrxMemoView(frxReport1.FindComponent('Memo3')).Text;
// Get Value property
txtValue.text := TfrxMemoView(frxReport1.FindComponent('Memo3')).Value;
end;
Если вы хотите объединить две строки из свойств Text
и Value
, тогда
procedure TForm1.Button1Click(Sender: TObject);
begin
// Set the Text property
TfrxMemoView(frxReport1.FindObject('Memo3')).Text:= 'MyFirstString';
// Set the Value property
TfrxMemoView(frxReport1.FindObject('Memo3')).Value:= 'MySecondString';
// Concatenate the strings and assign the result to the TEdit.Text property
txtValue.Text:= Concat(TfrxMemoView(frxReport1.FindObject('Memo3')).Text,
' ',
TfrxMemoView(frxReport1.FindObject('Memo3')).Value
);
end;