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

Undefined() public static method

Sets the Text of the page to a undefined state.
public static Undefined ( string text ) : void
text string The text to show as title of the page.
return void
        public static void Undefined(string text)
        {
            Page.lblProcessing.Text = text;
            Page.lblValue.Visible = false;
            Page.progressBarEncoding.Style = ProgressBarStyle.Marquee;
        }