ScreenToGif.Pages.Processing.Defined C# (CSharp) Méthode

Defined() public static méthode

Sets the Text of the page to a defined state.
public static Defined ( string text ) : void
text string The text to show as title of the page.
Résultat void
        public static void Defined(string text)
        {
            Page.lblProcessing.Text = text;
            Page.lblValue.Visible = true;
            Page.progressBarEncoding.Style = ProgressBarStyle.Continuous;
        }