In This Topic
Determines if the point is in the picture of the hyperlink control.
Syntax
'Declaration
Public Shared Function IsPointInPicture( _
ByVal As Graphics, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Rectangle, _
ByVal As Picture _
) As Boolean
'Usage
Dim g As Graphics
Dim x As Integer
Dim y As Integer
Dim faceRect As Rectangle
Dim pic As Picture
Dim value As Boolean
value = FpHyperlink.IsPointInPicture(g, x, y, faceRect, pic)
public static bool IsPointInPicture(
Graphics ,
int ,
int ,
Rectangle ,
Picture
)
Parameters
- g
- GDI+ graphics surface
- x
- X-coordinate of point
- y
- Y-coordinate of point
- faceRect
- Image rectangle
- pic
- Picture (image)
See Also