ToolStrip.GetItemAt 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.
Retourne l'élément situé à l'emplacement spécifié.
Surcharges
GetItemAt(Int32, Int32) |
Retourne l'élément situé aux coordonnées x et y spécifiées de la zone cliente ToolStrip. |
GetItemAt(Point) |
Retourne l'élément qui se trouve au point spécifié dans la zone cliente du ToolStrip. |
GetItemAt(Int32, Int32)
Retourne l'élément situé aux coordonnées x et y spécifiées de la zone cliente ToolStrip.
public:
System::Windows::Forms::ToolStripItem ^ GetItemAt(int x, int y);
public System.Windows.Forms.ToolStripItem GetItemAt (int x, int y);
public System.Windows.Forms.ToolStripItem? GetItemAt (int x, int y);
member this.GetItemAt : int * int -> System.Windows.Forms.ToolStripItem
Public Function GetItemAt (x As Integer, y As Integer) As ToolStripItem
Paramètres
- x
- Int32
Coordonnée horizontale, en pixels, en partant du bord gauche de la zone cliente.
- y
- Int32
Coordonnée verticale, en pixels, en partant du bord supérieur de la zone cliente.
Retours
ToolStripItem à l'emplacement spécifié ou null
si ToolStripItem est introuvable.
S’applique à
GetItemAt(Point)
Retourne l'élément qui se trouve au point spécifié dans la zone cliente du ToolStrip.
public:
System::Windows::Forms::ToolStripItem ^ GetItemAt(System::Drawing::Point point);
public System.Windows.Forms.ToolStripItem GetItemAt (System.Drawing.Point point);
public System.Windows.Forms.ToolStripItem? GetItemAt (System.Drawing.Point point);
member this.GetItemAt : System.Drawing.Point -> System.Windows.Forms.ToolStripItem
Public Function GetItemAt (point As Point) As ToolStripItem
Paramètres
- point
- Point
Point auquel rechercher le ToolStripItem.
Retours
ToolStripItem à l'emplacement spécifié ou null
si ToolStripItem est introuvable.