DTE2.Mode 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 the mode of the development environment, either debug or design.
public:
property EnvDTE::vsIDEMode Mode { EnvDTE::vsIDEMode get(); };
public:
property EnvDTE::vsIDEMode Mode { EnvDTE::vsIDEMode get(); };
[System.Runtime.InteropServices.DispId(230)]
public EnvDTE.vsIDEMode Mode { [System.Runtime.InteropServices.DispId(230)] get; }
[<System.Runtime.InteropServices.DispId(230)>]
[<get: System.Runtime.InteropServices.DispId(230)>]
member this.Mode : EnvDTE.vsIDEMode
Public ReadOnly Property Mode As vsIDEMode
Property Value
A vsIDEMode value.
Implements
- Attributes
Examples
Sub ModeExample()
msgbox(dte2.Mode)
End Sub