Reputation: 68830
I am trying to right align the value entered in a cell:
[Section]
[Entry ("Nickname")]
[Caption("Nick Name:")]
[Alignment(UITextAlignment.Right)]
string NickName;
But Left is used instead of Right? What am I missing?
Upvotes: 1
Views: 480
Reputation: 32694
The Alignment attribute only affects strings, it does not affect Entries.
Upvotes: 2