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

SetLayerType() private method

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