custom control help

  • Thread starter Thread starter graeme g
  • Start date Start date
G

graeme g

hi

i want to be able to hide properties in a control i am writing. i know
how to hide a control using

[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]

but how do i hide a large number of properties without having to put
that in front of everyone???

thanks in advance
graeme
 
AFAIK, the only way to hide something is to place the attribute on that item
specifically. So, unfortunately, you may need to place those attributes
above each property.
 
Back
Top