Im tired to look for in your forums with no success.
I just want to know how can i align the text for example i have this code:
this.xmeValue.Format = null;this.xmeValue.Mask = "-nnn,nnn,nnn,nnn";this.xmeValue.FlowDirection = FlowDirection.LeftToRight;this.xmeValue.PadChar = ' ';this.xmeValue.PromptChar = '_';this.xmeValue.DisplayMode = MaskMode.IncludeLiterals;this.xmeValue.DataMode = MaskMode.Raw;
the textbox display the data when is edited like this:
[_________ ]
With this flow:[______123 ]
I this:
[ _________]
With the same flow:
[ ______123]
I need also on dysplaymode right alignment, thanks.
Hello Javier,
Thank you for your feedback. I am glad that you resolved your issue and I believe that other community members may benefit from this as well.
Thanks again.
It works thanks. :)
I am just checking if you got this worked out or you still require any assistance or clarification on the matter.
Thank you for your post. I have been looking into it and I can suggest you set the XamMaskedEditor’s HorizontalContentAlignment to Right like this:
this.xmeValue.HorizontalContentAlignment = HorizontalAlignment.Right;
Please let me know if this helps you or you need further assistance on this matter.
Looking forward for your reply.