We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Showing properties with browsable(false)

As in the subject. Is there any way to show properties of an object that have been assigned as not browsable (this cant change).

I am binding a List.

Thx



1 Reply

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



Loader.
Live Chat Icon For mobile
Up arrow icon