How to hide public properties in property window at design time

  • Thread starter Thread starter popman
  • Start date Start date
P

popman

I develop a webcontrol which has some public properties.These properties are
shown in propery window at design time.
My question is how to hide public properties in property window at design
time?

Thanks in advance.
 
I develop a webcontrol which has some public properties.These properties are
shown in propery window at design time.
My question is how to hide public properties in property window at design
time?

Thanks in advance.
BrowsableAttribute....

<Browsable(False)>_
Public Property MyProperty() As Integer
....
End Property

--
Tom Shelton [MVP]
Powered By Gentoo Linux 1.4
"`The best way to get a drink out of a Vogon is to stick
your finger down his throat...'"

- The Book, on one of the Vogon's social inadequacies.
 
Back
Top