Vertical Alignment error in textbox

3 Ansichten (letzte 30 Tage)
Isobel Leikis
Isobel Leikis am 7 Mai 2022
Kommentiert: Isobel Leikis am 7 Mai 2022
I = imread('END_OF_YEAR Gameboard.jpg')I = imread('Gameboard1.png');
f = figure();
imshow(I);
title(name);
annotation('textbox', [0.13 0.08 0.8 0.1], ...
'String', 'LEVEL 1 complete! Please close the gameboard window to continue.', ...
'Color', '#E00E7C', ...
'FontWeight', 'bold', ...
'EdgeColor', 'none' ...
'VerticalAlignment', 'bottom');
uiwait(f);
% I keep getting an error saying that verticalalignment is unrecognised. My text is overlapping onto my picture and i need it below.
% Thanks in advance!

Akzeptierte Antwort

Jonas
Jonas am 7 Mai 2022
Bearbeitet: Jonas am 7 Mai 2022
you forgot the , (the comma) behind 'none'
then the code works for me

Weitere Antworten (0)

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by