03-26-2012 04:35 AM
What is the easiest way to make a right to left field for textbox,listbox,etc... ? (for hebrew)
is it a property i can change ? if yes , where is it ?
if not, Do i have to do that as a plugin code ?
03-26-2012 05:16 AM
.Net textboxes have a TextAlign property that sets the text alignment for the control. HorizontalAlignment.Left is the default if I remember correctly.
However, there's no need to do any coding to resolve this, if you open the layout designer (tools -> design layout) select one of the text fields then press F4, this will open the tool box, one of the exposed controls here is text alignment, since that's the case I'm going to also assume it's exposed programmatically if your needs require that.
03-26-2012 05:16 AM
.Net textboxes have a TextAlign property that sets the text alignment for the control. HorizontalAlignment.Left is the default if I remember correctly.
However, there's no need to do any coding to resolve this, if you open the layout designer (tools -> design layout) select one of the text fields then press F4, this will open the tool box, one of the exposed controls here is text alignment, since that's the case I'm going to also assume it's exposed programmatically if your needs require that.