vsCMOverrideKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the modifier applied to a method to describe how the method may be overridden.
public enum class vsCMOverrideKind
public enum class vsCMOverrideKind
enum vsCMOverrideKind
[System.Runtime.InteropServices.Guid("3E30C32D-9E8D-4919-8CC4-C3D75879BC52")]
public enum vsCMOverrideKind
[<System.Runtime.InteropServices.Guid("3E30C32D-9E8D-4919-8CC4-C3D75879BC52")>]
type vsCMOverrideKind =
Public Enum vsCMOverrideKind
- Inheritance
-
vsCMOverrideKind
- Attributes
Fields
Name | Value | Description |
---|---|---|
vsCMOverrideKindNone | 0 | This function does not have a modifier. |
vsCMOverrideKindAbstract | 1 | The parent class requires this method to be overridden. (This is equivalent to the |
vsCMOverrideKindVirtual | 2 | This function may be overridden in derived classes. (This is equivalent with the |
vsCMOverrideKindOverride | 4 | This function overrides a virtual function. |
vsCMOverrideKindNew | 8 | This function replaces a function in the parent class. (This is equivalent with the |
vsCMOverrideKindSealed | 16 | This function may not be overridden. |
Remarks
Used by OverrideKind property.