在使用 OmniThread 库的程序中,如何在 SetParameter 中传递 TRect?例子:
procedure TestParameters(const ATask: IOmniTask);
begin
// how can I access the TRect here?
end;
FTestTask := CreateTask(TestParameters, 'TestParameters')
.MonitorWith(OTLMonitor)
.SetParameter('FormRect', Self.ClientRect) // does not work
.Run;
是否有一般规则如何在 SetParameter 中使用不同类型?