LinkLabel.PointInLink(Int32, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得位於指定用戶端座標處的連結。
protected:
System::Windows::Forms::LinkLabel::Link ^ PointInLink(int x, int y);
protected System.Windows.Forms.LinkLabel.Link PointInLink (int x, int y);
protected System.Windows.Forms.LinkLabel.Link? PointInLink (int x, int y);
member this.PointInLink : int * int -> System.Windows.Forms.LinkLabel.Link
Protected Function PointInLink (x As Integer, y As Integer) As LinkLabel.Link
參數
- x
- Int32
點的水平座標,用來搜尋連結。
- y
- Int32
點的垂直座標,用來搜尋連結。
傳回
LinkLabel.Link,表示位於指定座標處的連結。 如果該處不包含連結,將傳回 null
。
備註
這個方法可讓您判斷連結是否位於控制項內 LinkLabel 的特定點。 您可以在 控制項事件的事件處理常式 MouseEnter 中使用這個方法,以判斷滑鼠指標是否停留在控制項中的連結上。 一旦您判斷滑鼠指標位於連結上之後,即可透過 StatusBar 文字或 ToolTip 顯示使用者連結的其他資訊。