VCCodeFunction.MustImplement Property
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.
Gets or sets a value indicating whether or not the item is declared abstract and thus requires an implementation.
public:
property bool MustImplement { bool get(); void set(bool value); };
public:
property bool MustImplement { bool get(); void set(bool value); };
[System.Runtime.InteropServices.DispId(41)]
public bool MustImplement { [System.Runtime.InteropServices.DispId(41)] get; [System.Runtime.InteropServices.DispId(41)] set; }
[<System.Runtime.InteropServices.DispId(41)>]
[<get: System.Runtime.InteropServices.DispId(41)>]
[<set: System.Runtime.InteropServices.DispId(41)>]
member this.MustImplement : bool with get, set
Public Property MustImplement As Boolean
Property Value
true if the method is declared abstract and thus requires an implementation; false if otherwise.
- Attributes
Remarks
MustImplement returns or sets whether the method is implemented or requires an implementation in subclasses. For some languages this might always be false
, and that setting MustImplement might fail, depending on the language.