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

SetMaxNumFeatures() private method

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