UITable in App Designer strips leading white space

10 ビュー (過去 30 日間)
Felix Widmaier
Felix Widmaier 2017 年 2 月 10 日
コメント済み: Usaid 2022 年 8 月 4 日
When using uitable in GUIDE, I was able to pad strings with leading spaces to get them right aligned like in the following (using a monospace font):
1532.000
5.543
26.457
Currently I am considering switching to App Designer. I am using the same space-padded strings but here the uitable seems to strip them off. That is the result looks like the following:
1532.000
5.543
26.457
Is there a way to make uitable in App Designer keep the spaces like it did in GUIDE? Or even better, is there a way to directly right-align the strings without the need of padding?

採用された回答

Felix Widmaier
Felix Widmaier 2017 年 3 月 17 日
I asked the same question on StackOverflow and got an answer there. See http://stackoverflow.com/questions/42224921/right-align-values-in-uitable-in-app-designer. Note that the answer there is about right-aligning (which is what I actually want), not about the trimmed spaces.

その他の回答 (1 件)

Greg
Greg 2021 年 10 月 27 日
I encourage the use of proper horizontal-alignment-right as described in Felix's answer. However, in the event somebody has a real need for leading spaces (and apparently also consecutive interior spacing), use the unicode character 160. It is a special character designed to be blank/invisible but not classified as whitespace.
Example code:
text = ["Seafood";char(160+zeros(1,5)) + "Nachos"];
t = uitable(uigridlayout(uifigure,[1,1]),'Data',text);
  1 件のコメント
Usaid
Usaid 2022 年 8 月 4 日
I think the character you are refering to is a No-Break Space Unicode character.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by