Как добавить в скрипт функцию SendToBack?

Question: Как добавить в скрипт функцию SendToBack?

Answer:

1
2
3
4
5
6
7
8
9
constructor TFunctions.Create(AScript: TfsScript); 
begin inherited Create(AScript); 
with AScript do 
begin 
with TfsClassVariable(Find('TfrxView')) do 
AddMethod('procedure SendToBack',CallMethod); 
end; 
end; 
initialization fsRTTIModules.Add(TFunctions);