Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
330
XamMaskedEditor Text Align (Not flow direction)
posted

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.