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

SetIsEditable() private method

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