NetSimpleRESTSOEWithProperties.Cat.PropertyForm.SetReturnFormat C# (CSharp) Method

SetReturnFormat() private method

private SetReturnFormat ( string value ) : void
value string
return void
        private void SetReturnFormat(string value)
        {
            if (InvokeRequired)
            {
                this.Invoke(new Action<string>(SetReturnFormat), new object[] { value });
                return;
            }
            ReturnFormatBox.Text = value;
        }