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.
Up arrow icon