ParseChild_xxx

ParseChild is called for every child records of the part record. So then input parameters are both the part and the child table.

function ParseChild_T1(aPart, aChild: TcmlTable):boolean;
begin
  aPart['y'] := RoundTo(-125.323,-1);
  aPart['txt'] := FormatFloat(',##',2445455.87453);

  if aChild['z'] = 3 then result := false
  else result := true;
end;

Last updated

Was this helpful?