I try to set a Memo frame in script. I write Memo1.Frame.Typ := [ftLeft, ftRight, ftTop, ftBottom]. But I receive an error. Why ?

Question: I try to set a Memo frame in script. I write Memo1.Frame.Typ := [ftLeft, ftRight, ftTop, ftBottom]. But I receive an error. Why ?

Answer:

FastReport script does not support sets . You can do this : 

1
Memo1.Frame.Typ := ftLeft + ftRight + ftTop + ftBottom;