MATLAB: How to access the code behind the uitable; if I create the uitable with GUIDE (not with the uitable-command)

guideuitable

I can access the code of a uitable when initiating it with the uitable-command. I am however unable of changing the code of a table (uitable) constructed graphically with GUIDE.

Best Answer

The uitable will have a 'Tag' property in your GUIDE gui. I always rename this to something sensible but if you don't it is probably 'uitable1' or something.
In any callback function you can access it as:
handles.uitable1
e.g.
set( handles.uitable1, 'Data', someData );
Basically you can access any property like that just as you could if you created it yourself.
Related Question