New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Right-to-Left Support

Basic SpeechToTextButton

Disabled SpeechToTextButton

The language input for web users can be left-to-right or right-to-left. The SpeechToTextButton supports both input modes enabling you to properly render a spectrum of languages, including Hebrew, Chinese, and Arabic, thus making your app a truly global one and helping your localization efforts.

The WebForms SpeechToTextButton component comes with built-in right-to-left (RTL) support and offers right-to-left rendering.

This demo shows how to set the SpeechToTextButton RTL functionality by wrapping the Bbuttonelement in a container div element with dir="rtl".

  • DefaultVB.aspx
  • DefaultVB.aspx.vb
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="DefaultVB.aspx.vb"  Inherits="SpeechToTextButton_Accessibility_and_Internationalization_RTL_DefaultVB" %>

<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
    <title>Telerik ASP.NET Example</title>
</head>

<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
    <div class="demo-container no-bg flex-center" runat="server">
        <div dir="rtl">
            <p>Basic SpeechToTextButton</p>
            <telerik:RadSpeechToTextButton ID="RadSpeechToTextButton1" runat="server" ThemeColor="Base" />

            <p>Disabled SpeechToTextButton</p>
            <telerik:RadSpeechToTextButton ID="RadSpeechToTextButton2" runat="server" Enable="false" ThemeColor="Base" />
        </div>
    </div>
    </form>
</body>
</html>

Support & Learning Resources

Find Assistance