Which control limits are you trying to extract? Columns might have multiple and you have to pick correct one and then have some extra args. Below is one option
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Quality Control/Coating.jmp");
obj = dt << Control Chart(
Sample Size(:Sample),
KSigma(3),
Chart Col(:Weight, XBar, R)
);
obj << in Column;
wait(0); // to make sure properties have time to be set
cl_colprop = Column(dt, "Weight") << Get Property("Control Limits");
show(cl_colprop);
xbar = Arg(cl_colprop, 1); // XBar in this case
r = Arg(cl_colprop, 2); // R in this case
avgxbar = Arg(xbar, 1); // Avg
lclxbar = Arg(xbar, 2); //
uclxbar = Arg(xbar, 3);
avg = Arg(avgxbar);
lcl = Arg(lclxbar);
ucl = Arg(uclxbar);
show(xbar, r, avgxbar, lclxbar, uclxbar, avg, lcl, ucl);
-Jarmo