MonthCalendar.HitTest 方法

定义

确定位于指定位置的日历元素。

重载

HitTest(Point)

返回一个对象,该对象带有关于月历控件的哪个部分位于由 Point 指定的位置的信息。

HitTest(Int32, Int32)

返回 MonthCalendar.HitTestInfo,包含有关月历控件的哪个部分位于指定的 x 和 y 坐标处的信息。

HitTest(Point)

返回一个对象,该对象带有关于月历控件的哪个部分位于由 Point 指定的位置的信息。

public:
 System::Windows::Forms::MonthCalendar::HitTestInfo ^ HitTest(System::Drawing::Point point);
public System.Windows.Forms.MonthCalendar.HitTestInfo HitTest (System.Drawing.Point point);
member this.HitTest : System.Drawing.Point -> System.Windows.Forms.MonthCalendar.HitTestInfo
Public Function HitTest (point As Point) As MonthCalendar.HitTestInfo

参数

point
Point

Point,包含要进行点击测试的点的 XY 坐标。

返回

一个 MonthCalendar.HitTestInfo,其中包含有关 MonthCalendar 上的指定点的信息。

另请参阅

适用于

HitTest(Int32, Int32)

返回 MonthCalendar.HitTestInfo,包含有关月历控件的哪个部分位于指定的 x 和 y 坐标处的信息。

public:
 System::Windows::Forms::MonthCalendar::HitTestInfo ^ HitTest(int x, int y);
public System.Windows.Forms.MonthCalendar.HitTestInfo HitTest (int x, int y);
member this.HitTest : int * int -> System.Windows.Forms.MonthCalendar.HitTestInfo
Public Function HitTest (x As Integer, y As Integer) As MonthCalendar.HitTestInfo

参数

x
Int32

要进行点击测试的点的 X 坐标。

y
Int32

要进行点击测试的点的 Y 坐标。

返回

一个 MonthCalendar.HitTestInfo,其中包含有关 MonthCalendar 上的指定点的信息。

另请参阅

适用于