SR
SubhaSheela R
Syncfusion Team
June 3, 2008 07:18 AM UTC
Hi Jack,
Thanks for your interest in Syncfusion products.
It is not possible to visible the property after Browsable[false] is set. It is the default behavior. By adding the Browsable attribute with false argument, make a property invisible to Desginer. Here is the code to do it,
private int myVar;
[System.ComponentModel.Browsable(false)]
public int MyProperty
{
get { return myVar; }
set { myVar = value; }
}
Kindly let me know if you need any further details.
Regards,
Subhasheela R