SpeechRecognizerUIOptions.AudiblePrompt Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the heading text that is displayed on the Listening screen. The default is "Listening...".
public:
property Platform::String ^ AudiblePrompt { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring AudiblePrompt();
void AudiblePrompt(winrt::hstring value);
public string AudiblePrompt { get; set; }
var string = speechRecognizerUIOptions.audiblePrompt;
speechRecognizerUIOptions.audiblePrompt = string;
Public Property AudiblePrompt As String
Property Value
The heading text. A custom string should clearly describe the kind of info expected by the app and is limited to two lines in length.
Remarks
The default string is automatically localized: If the speech recognizer has an associated language, the default text is shown in that language. Otherwise, the default text is shown in the system language.
You are responsible for localizing a custom string.