2

How can I hide user control properties from IntelliSense in Visual Studio?

makes
  • 6,438
  • 3
  • 40
  • 58
Sadegh
  • 4,181
  • 9
  • 45
  • 78

1 Answers1

5

Apply the [EditorBrowsable] attribute. It's still possible to the developer to show these hidden members via the VS Options dialog, however.

Tim Robinson
  • 53,480
  • 10
  • 121
  • 138
  • Very good, now i'd like to hide the Inherited class properties like size property of form class. thanks for your answer. – Sadegh Dec 05 '09 at 13:19