ScreenToGif.Pages.Processing.Undefined C# (CSharp) 메소드

Undefined() 공개 정적인 메소드

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.
리턴 void
        public static void Undefined(string text)
        {
            Page.lblProcessing.Text = text;
            Page.lblValue.Visible = false;
            Page.progressBarEncoding.Style = ProgressBarStyle.Marquee;
        }