We know there is limited inheritance in VBA and in order to use it, you would need to use the word with implements.
However, in my example below, is this an example of inheritance?
Class1:
Private pabc As Integer
Public Property Let abc(ByVal vNewValue As Integer)
Dim c As...