ACAT.Extensions.Default.UI.Dialogs.TextToSpeechSettingsForm.populateUI C# (CSharp) Method

populateUI() private method

Populate the controls with settings from the TTS engine
private populateUI ( ) : void
return void
        private void populateUI()
        {
            tbVolume.Text = Convert.ToString(Context.AppTTSManager.ActiveEngine.GetVolume().Value);
            tbRate.Text = Convert.ToString(Context.AppTTSManager.ActiveEngine.GetRate().Value);
            tbPitch.Text = Convert.ToString(Context.AppTTSManager.ActiveEngine.GetPitch().Value);
        }