How can I hide user control properties from IntelliSense in Visual Studio?
Asked
Active
Viewed 1,017 times
1 Answers
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