Contnrs.TObjectList.Count

Hello!


Could you please insert into ap_Contnrs.pas the Count property of TObjectList? Each update I have to write it otherwise I get an error running my scripts.

I don't know why the ImportTool doesn't write it.

With Scripter.DefineClass(TObjectList) do
  begin
    ...
    DefineProp('Count',tkVariant,__GetTObjectListCount,__SetTObjectListCount,nil,false,0);
    ...
  end;

Thank you!
Stefan.

Sorry, only GetTObjectListCount.

The Delete method is also missing. Sorry about these 3 posts telling the same...

The imported VCL is generated automatically by the import tool and we keep this way to avoid breaking backward compatibility if we manually edit the files.

We will investigate to improve the import tool to deal with some specific syntax issues with the new VCL and check if it will import the Count/Delete method.

Thank you!