AoMEngineLibrary.AMP.ProgressDialog.SetProgressText C# (CSharp) Method

SetProgressText() public method

public SetProgressText ( string text ) : void
text string
return void
        public void SetProgressText(string text)
        {
            if (progressLabel.InvokeRequired)
            {
                progressLabel.BeginInvoke(new Action(() =>
                {
                    progressLabel.Text = text;
                }));
            }
            else
            {
                progressLabel.Text = text;
            }
        }