Ian Vink
Ian Vink

Reputation: 68830

MonoTouch.Dialog: Alignment of Text

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?

enter image description here

Upvotes: 1

Views: 480

Answers (1)

miguel.de.icaza
miguel.de.icaza

Reputation: 32694

The Alignment attribute only affects strings, it does not affect Entries.

Upvotes: 2

Related Questions