AsyncModelingPackage.GetToolWindow Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
GetToolWindow(Type) |
Retourne la fenêtre d’outil instance correspondant au type donné. Nous prenons uniquement en charge les fenêtres d’outils à instance unique. Il s’agit donc toujours d’un mappage 1-1. |
GetToolWindow(Type, Boolean) |
Retourne la fenêtre d’outil instance correspondant au type donné. Nous prenons uniquement en charge les fenêtres d’outils à instance unique. Il s’agit donc toujours d’un mappage 1-1. |
GetToolWindow(Type)
Retourne la fenêtre d’outil instance correspondant au type donné. Nous prenons uniquement en charge les fenêtres d’outils à instance unique. Il s’agit donc toujours d’un mappage 1-1.
public:
Microsoft::VisualStudio::Modeling::Shell::ToolWindow ^ GetToolWindow(Type ^ toolWindowType);
public Microsoft.VisualStudio.Modeling.Shell.ToolWindow GetToolWindow (Type toolWindowType);
member this.GetToolWindow : Type -> Microsoft.VisualStudio.Modeling.Shell.ToolWindow
Public Function GetToolWindow (toolWindowType As Type) As ToolWindow
Paramètres
- toolWindowType
- Type
Retours
Fenêtre d’outil de toolWindowType
type
S’applique à
GetToolWindow(Type, Boolean)
Retourne la fenêtre d’outil instance correspondant au type donné. Nous prenons uniquement en charge les fenêtres d’outils à instance unique. Il s’agit donc toujours d’un mappage 1-1.
public:
Microsoft::VisualStudio::Modeling::Shell::ToolWindow ^ GetToolWindow(Type ^ toolWindowType, bool forceCreate);
public:
virtual Microsoft::VisualStudio::Modeling::Shell::ToolWindow ^ GetToolWindow(Type ^ toolWindowType, bool forceCreate);
public Microsoft.VisualStudio.Modeling.Shell.ToolWindow GetToolWindow (Type toolWindowType, bool forceCreate);
member this.GetToolWindow : Type * bool -> Microsoft.VisualStudio.Modeling.Shell.ToolWindow
abstract member GetToolWindow : Type * bool -> Microsoft.VisualStudio.Modeling.Shell.ToolWindow
override this.GetToolWindow : Type * bool -> Microsoft.VisualStudio.Modeling.Shell.ToolWindow
Public Function GetToolWindow (toolWindowType As Type, forceCreate As Boolean) As ToolWindow
Paramètres
- toolWindowType
- Type
Type de fenêtre d’outil à récupérer
- forceCreate
- Boolean
True si la fenêtre outil doit être créée si elle ne l’a pas déjà été.
Retours
Fenêtre d’outil de toolWindowType
type