Remove a Public property from base class?!
Visual Basic
2
Posts
1
Posters
0
Views
1
Watching
-
Hi I have a Base class which exposes some public properties, and I derive a second class. I want the second class, not to have some of the public properties of its parent. (I don't want to use Shadows statement to create a new empty property, I want to hide it completely) Could you please help me?
-
Hi I have a Base class which exposes some public properties, and I derive a second class. I want the second class, not to have some of the public properties of its parent. (I don't want to use Shadows statement to create a new empty property, I want to hide it completely) Could you please help me?
Found the solution:
<bindable(false), EditorBrowsable(EditorBrowsableState.Never), Browsable(False)> _ Public Shadows Property GridType() As GridTypes Get End Get Set(ByVal value As GridTypes) End Set End Property