DTE2::DisplayMode Property

 

Gets or sets the display mode, either MDI or Tabbed Documents.

Namespace:   EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.dll)

property vsDisplay DisplayMode {
	vsDisplay get();
	void set(vsDisplay value);
}

Property Value

Type: EnvDTE::vsDisplay

A vsDisplay constant representing the display mode.

Sub DisplayModeExample()
   If DTE2.DisplayMode = vsDisplay.vsDisplayMDI Then
     MsgBox("Environment is in MDI mode.")
   Else
     MsgBox("Environment is in Tabbed Documents mode.")
   End If
End Sub
Return to top
Show: