Forex_Strategy_Builder.JForex_Import.SetInfoText C# (CSharp) Method

SetInfoText() private method

private SetInfoText ( string text ) : void
text string
return void
        void SetInfoText(string text)
        {
            if (tbxInfo.InvokeRequired)
            {
                BeginInvoke(new SetInfoTextCallback(SetInfoText), new object[] { text });
            }
            else
            {
                tbxInfo.AppendText(text);
            }
        }