overide a base method that is not virtual

M

Mark

Assume class2 inherits from class1, and that the method foo() in class2
should override a non-virtual method foo() in class1. How do you indicate
that it overrides foo() in class1 using Visio?

Thanks in advance!
Mark
 
S

Steve Cox

Mark,

You can use the shadows keyword, but that is not the same as overrides.
Shadows hides the base class method.

Look up Shadows and Shadowing in the help and compare to overrides and
overrideable.
 
Top