_DTE.Edition 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 a description of the edition of the environment.
public:
property System::String ^ Edition { System::String ^ get(); };
public:
property Platform::String ^ Edition { Platform::String ^ get(); };
[System.Runtime.InteropServices.DispId(246)]
public string Edition { [System.Runtime.InteropServices.DispId(246)] get; }
[<System.Runtime.InteropServices.DispId(246)>]
[<get: System.Runtime.InteropServices.DispId(246)>]
member this.Edition : string
Public ReadOnly Property Edition As String
Property Value
A string representing the description of the environment edition.
- Attributes
Examples
Sub EditionExample()
MsgBox(DTE.Edition)
End Sub