ScreenToGif.Pages.Processing.SetPreEncoding C# (CSharp) Method

SetPreEncoding() public method

Sets the Text of the page to a state that is not Encoding.
public SetPreEncoding ( string text ) : void
text string The text to show as title of the page.
return void
        public void SetPreEncoding(string text)
        {
            lblProcessing.Text = text;
            lblValue.Visible = false;
            progressBarEncoding.Style = ProgressBarStyle.Marquee;
        }