RTL Support in ASP.NET Webforms CurrencyTextBox

28 Oct 20221 minute to read

The CurrencyTextbox provides RTL (Right-To-Left) support. The alignment of the CurrencyTextbox can be changed from Left-To-Right into Right-To-Left. It accepts Boolean values. The default value is false.

Enable RTL

Add the following code to your ASPX page to render the CurrencyTextbox control with RTL.

  • HTML
  • <ej:CurrencyTextBox ID="currency" Value="33" EnableRTL="true"  runat="server"> </ej:CurrencyTextBox>

    The output when the EnableRTL is true.

    ASP.NET Webforms CurrencyTextBox RTL Support