In my example Objects is array of Objects (from StringGrid)
I can do this: Objects[0,0] := TObject(5);
...
if Objects[0,0] = TObject(5) then ...
but, how to compare TObject as set of ?
I can set Objects as "set": Objects[0,0] := TObject([5,4,1]);
but I don't know how to compare:
if [2] in Objects[0,0] then ... ???
is there any way to do this ?