Appdesigner uitable and uistyle

15 views (last 30 days)
CAM
CAM on 15 Jan 2021
Edited: CAM on 19 Jan 2021
I created a uitable in appdesigner and populated it with data. I want to make the font in the 4th column blue and bold. I used:
s1 = uistyle('FontWeight', 'Bold', "FontColor", [0 0 1]);
addstyle(app.tblData, s1, 'column', 4);
and even this version:
s1 = uistyle;
s1.FontWeight = 'Bold';
s1.FontColor = [0 0 1];
addstyle(app.tblData, s1, 'column', 4);
I keep getting the error: Undefined function 'addstyle' for input arguments of type 'matlab.ui.control.Table'.
The help and support pages say I can use either versions of the code above. Why do I see that error?

Accepted Answer

Sean de Wolski
Sean de Wolski on 15 Jan 2021
capital S in addStyle :)
  1 Comment
CAM
CAM on 19 Jan 2021
Edited: CAM on 19 Jan 2021
[Embarrassed]: I can't believe I missed that. Thank you for catching it. My apologies for taking your time.

Sign in to comment.

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!