Conditional “Browsable” Attribute

I’m not sure this applies to your situation, but you can adjust the “Browsable” decoration at run-time by calling the function below. /// <summary> /// Set the Browsable property. /// NOTE: Be sure to decorate the property with [Browsable(true)] /// </summary> /// <param name=”PropertyName”>Name of the variable</param> /// <param name=”bIsBrowsable”>Browsable Value</param> private void setBrowsableProperty(string strPropertyName, … Read more